aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h
diff options
context:
space:
mode:
authorGravatar Eugene Zhulenev <ezhulenev@google.com>2018-08-01 15:55:46 -0700
committerGravatar Eugene Zhulenev <ezhulenev@google.com>2018-08-01 15:55:46 -0700
commit1b0373ae10687ecc51ad9a0bfd46aa4ee116ade1 (patch)
tree39740a2ffa119168815bd7e59fde5b2d7e9aac2d /unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h
parent64abdf1d7eb17174f571751346dd0cbadcf3bc52 (diff)
Replace all using declarations with typedefs in Tensor ops
Diffstat (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h')
-rw-r--r--unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h b/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h
index f94c1380d..fbe69aabc 100644
--- a/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h
+++ b/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h
@@ -119,10 +119,12 @@ struct TensorEvaluator<const TensorShufflingOp<Shuffle, ArgType>, Device>
RawAccess = false
};
- using ScalarNoConst = typename internal::remove_const<Scalar>::type;
+ typedef typename internal::remove_const<Scalar>::type ScalarNoConst;
- using TensorBlock = internal::TensorBlock<ScalarNoConst, Index, NumDims, Layout>;
- using TensorBlockReader = internal::TensorBlockReader<ScalarNoConst, Index, NumDims, Layout>;
+ typedef internal::TensorBlock<ScalarNoConst, Index, NumDims, Layout>
+ TensorBlock;
+ typedef internal::TensorBlockReader<ScalarNoConst, Index, NumDims, Layout>
+ TensorBlockReader;
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op,
const Device& device)
@@ -417,10 +419,12 @@ struct TensorEvaluator<TensorShufflingOp<Shuffle, ArgType>, Device>
RawAccess = false
};
- using ScalarNoConst = typename internal::remove_const<Scalar>::type;
+ typedef typename internal::remove_const<Scalar>::type ScalarNoConst;
- using TensorBlock = internal::TensorBlock<ScalarNoConst, Index, NumDims, Layout>;
- using TensorBlockWriter = internal::TensorBlockWriter<ScalarNoConst, Index, NumDims, Layout>;
+ typedef internal::TensorBlock<ScalarNoConst, Index, NumDims, Layout>
+ TensorBlock;
+ typedef internal::TensorBlockWriter<ScalarNoConst, Index, NumDims, Layout>
+ TensorBlockWriter;
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device)
: Base(op, device)