aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2014-06-10 10:31:29 -0700
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2014-06-10 10:31:29 -0700
commitaa664eabb912a1b96e417e9a8d9c98f423b7fc23 (patch)
tree3c61ad7786af2df42c25226301e103541271197b /unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h
parent4304c7354273487cca139f9988c90378162773e9 (diff)
Fixed a few compilation errors.
Diffstat (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h')
-rw-r--r--unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h b/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h
index a554b8260..c4cfe0cd8 100644
--- a/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h
+++ b/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h
@@ -100,7 +100,7 @@ struct TensorEvaluator<const TensorConvolutionOp<Indices, InputArgType, KernelAr
typedef TensorConvolutionOp<Indices, InputArgType, KernelArgType> XprType;
static const int NumDims = TensorEvaluator<InputArgType, Device>::Dimensions::count;
- static const int KernelDims = Indices::size;
+ static const int KernelDims = internal::array_size<Indices>::value;
typedef typename XprType::Index Index;
typedef DSizes<Index, NumDims> Dimensions;