From a7b7f3ca8a25bfef4058d8a212cdc504bf5aa50e Mon Sep 17 00:00:00 2001 From: Eugene Zhulenev Date: Tue, 23 Apr 2019 17:23:19 -0700 Subject: Add missing EIGEN_DEPRECATED annotations to deprecated functions and fix few other doxygen warnings --- unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h') diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h b/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h index d9400163c..614475fc0 100644 --- a/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h +++ b/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h @@ -367,9 +367,16 @@ struct NoOpOutputKernel { */ template EIGEN_ALWAYS_INLINE void operator()( - const internal::blas_data_mapper& /*output_mapper*/, - const TensorContractionParams& /*params*/, Index /*i*/, - Index /*j*/, Index /*num_rows*/, Index /*num_cols*/) const {} + const internal::blas_data_mapper& output_mapper, + const TensorContractionParams& params, Index i, + Index j, Index num_rows, Index num_cols) const { + EIGEN_UNUSED_VARIABLE(output_mapper); + EIGEN_UNUSED_VARIABLE(params); + EIGEN_UNUSED_VARIABLE(i); + EIGEN_UNUSED_VARIABLE(j); + EIGEN_UNUSED_VARIABLE(num_rows); + EIGEN_UNUSED_VARIABLE(num_cols); + } }; template -- cgit v1.2.3