aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2016-02-19 15:58:57 +0000
committerGravatar Benoit Steiner <benoit.steiner.goog@gmail.com>2016-02-19 15:58:57 +0000
commitf3352e0fb02d1048a4c21c969b10e84185f4e5bf (patch)
tree9f1172ccb48e8f6ea6712be301a14925ccfb405a
parentf7cb755299b8cdee3b8eaffd2941af9ee6d08b04 (diff)
Don't make the array constructors explicit
-rw-r--r--unsupported/Eigen/CXX11/src/Core/util/EmulateArray.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/Eigen/CXX11/src/Core/util/EmulateArray.h b/unsupported/Eigen/CXX11/src/Core/util/EmulateArray.h
index 56e2b8afc..eae8b996c 100644
--- a/unsupported/Eigen/CXX11/src/Core/util/EmulateArray.h
+++ b/unsupported/Eigen/CXX11/src/Core/util/EmulateArray.h
@@ -42,7 +42,7 @@ template <typename T, size_t n> class array {
EIGEN_DEVICE_FUNC
EIGEN_STRONG_INLINE array() { }
- explicit EIGEN_DEVICE_FUNC
+ EIGEN_DEVICE_FUNC
EIGEN_STRONG_INLINE array(const T& v) {
EIGEN_STATIC_ASSERT(n==1, YOU_MADE_A_PROGRAMMING_MISTAKE)
values[0] = v;