aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-09-16 11:32:54 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-09-16 11:32:54 +0200
commit18f6e47815e2e771a0043d90ed52f853158c416c (patch)
tree4cd46bb4e2c481c0dd616b67654e67cec829131a /unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
parentee62f168e6be801214c732a1e7a048a388dede47 (diff)
Fix order of "static inline".
Diffstat (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h')
-rw-r--r--unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h b/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
index fc75dbb5c..1ba8d6328 100644
--- a/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
+++ b/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
@@ -190,25 +190,25 @@ struct reducer_traits<MeanReducer<T>, Device> {
template <typename T, bool IsMax = true, bool IsInteger = true>
struct MinMaxBottomValue {
- EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE static T bottom_value() {
+ EIGEN_DEVICE_FUNC static EIGEN_STRONG_INLINE T bottom_value() {
return Eigen::NumTraits<T>::lowest();
}
};
template <typename T>
struct MinMaxBottomValue<T, true, false> {
- EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE static T bottom_value() {
+ EIGEN_DEVICE_FUNC static EIGEN_STRONG_INLINE T bottom_value() {
return -Eigen::NumTraits<T>::infinity();
}
};
template <typename T>
struct MinMaxBottomValue<T, false, true> {
- EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE static T bottom_value() {
+ EIGEN_DEVICE_FUNC static EIGEN_STRONG_INLINE T bottom_value() {
return Eigen::NumTraits<T>::highest();
}
};
template <typename T>
struct MinMaxBottomValue<T, false, false> {
- EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE static T bottom_value() {
+ EIGEN_DEVICE_FUNC static EIGEN_STRONG_INLINE T bottom_value() {
return Eigen::NumTraits<T>::infinity();
}
};