aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2016-05-27 12:54:06 -0700
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2016-05-27 12:54:06 -0700
commite96d36d4cd12d72d27d646a5e8b57fb35ac4ee41 (patch)
tree27697ce09051ac9ba9c505b8394ebca8553faaf0 /unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h
parentabc815798b21ce99c28444d7df5b48573de3e237 (diff)
Use NULL instead of nullptr to preserve the compatibility with cxx03
Diffstat (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h')
-rw-r--r--unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h b/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h
index 359fd243a..caf994961 100644
--- a/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h
+++ b/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h
@@ -811,7 +811,7 @@ struct TensorEvaluator<const TensorStridingSlicingOp<StartIndices, StopIndices,
}
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar* data() const {
- return nullptr;
+ return NULL;
}
protected: