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-09 09:45:30 -0700
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2014-06-09 09:45:30 -0700
commita669052f12d6d71ba815764d6419726d64fef675 (patch)
treea087876a5b341c0c3f2380d3530579cfbeb25c1c /unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h
parent36a2b2e9dc9368356b3f327a1fb00616397c1e0e (diff)
Improved support for rvalues in tensor expressions.
Diffstat (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h')
-rw-r--r--unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h b/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h
index ca2e0e562..501e9a522 100644
--- a/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h
+++ b/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h
@@ -35,6 +35,10 @@ struct traits<TensorConvolutionOp<Dimensions, InputXprType, KernelXprType> >
typedef typename KernelXprType::Nested RhsNested;
typedef typename remove_reference<LhsNested>::type _LhsNested;
typedef typename remove_reference<RhsNested>::type _RhsNested;
+
+ enum {
+ Flags = 0,
+ };
};
template<typename Dimensions, typename InputXprType, typename KernelXprType>