aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2015-11-19 14:34:26 -0800
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2015-11-19 14:34:26 -0800
commitf37a5f1c539a7545579b06489c16df42005bd819 (patch)
tree9f19f7d2a1471ea9b614805d2f11d7e2f5882e2a /unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h
parent04f1284f9a9ba38c3b23ccbd1168b874e5edf33a (diff)
Fixed compilation error triggered by nvcc
Diffstat (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h')
-rw-r--r--unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h b/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h
index 2b0808629..f5cca0ad7 100644
--- a/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h
+++ b/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h
@@ -130,8 +130,8 @@ static TensorUInt128<uint64_t, uint64_t> operator * (const TensorUInt128<HL, LL>
// de
// The result is stored in 2 64bit integers, high and low.
- static const uint64_t LOW = 0x00000000FFFFFFFFLL;
- static const uint64_t HIGH = 0xFFFFFFFF00000000LL;
+ const uint64_t LOW = 0x00000000FFFFFFFFLL;
+ const uint64_t HIGH = 0xFFFFFFFF00000000LL;
uint64_t d = lhs.low & LOW;
uint64_t c = (lhs.low & HIGH) >> 32LL;