Use NULL instead of nullptr to preserve the compatibility with cxx03

This commit is contained in:
Benoit Steiner 2016-05-27 12:54:06 -07:00
parent abc815798b
commit e96d36d4cd

View File

@ -811,7 +811,7 @@ struct TensorEvaluator<const TensorStridingSlicingOp<StartIndices, StopIndices,
}
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar* data() const {
return nullptr;
return NULL;
}
protected: