aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/StlSupport/StdDeque.h
diff options
context:
space:
mode:
authorGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2015-08-14 16:09:48 +0200
committerGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2015-08-14 16:09:48 +0200
commit712e2fed1705746847d1cbdce01094eb42a45139 (patch)
treec127dd4f56c23afc091331c1adc82b748735e2ec /Eigen/src/StlSupport/StdDeque.h
parenta5d1bb2be8340e446d6f8ce24e0b1a8987e9be95 (diff)
bug #829: Introduce macro EIGEN_HAS_CXX11_CONTAINERS and do not specialize std-containers if it is enabled.
Diffstat (limited to 'Eigen/src/StlSupport/StdDeque.h')
-rw-r--r--Eigen/src/StlSupport/StdDeque.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/StlSupport/StdDeque.h b/Eigen/src/StlSupport/StdDeque.h
index 909600476..25930cb85 100644
--- a/Eigen/src/StlSupport/StdDeque.h
+++ b/Eigen/src/StlSupport/StdDeque.h
@@ -53,7 +53,7 @@ namespace std \
}
// check whether we really need the std::deque specialization
-#if !(defined(_GLIBCXX_DEQUE) && (!EIGEN_GNUC_AT_LEAST(4,1))) /* Note that before gcc-4.1 we already have: std::deque::resize(size_type,const T&). */
+#if !EIGEN_HAS_CXX11_CONTAINERS && !(defined(_GLIBCXX_DEQUE) && (!EIGEN_GNUC_AT_LEAST(4,1))) /* Note that before gcc-4.1 we already have: std::deque::resize(size_type,const T&). */
namespace std {