aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/StdList
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-04-18 20:16:39 +0200
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-04-18 20:16:39 +0200
commit086d5f1ac6485f7f31e7a04995799905cb93dedb (patch)
treeecb34ab166c699d718f040bf4ef1153d61aa0608 /Eigen/StdList
parent214d5a892deda4bf137ba50b47d9d090c82e9a2e (diff)
Fixed indentation and removed debug code.
Diffstat (limited to 'Eigen/StdList')
-rw-r--r--Eigen/StdList9
1 files changed, 4 insertions, 5 deletions
diff --git a/Eigen/StdList b/Eigen/StdList
index 5eeeb8add..a6737593e 100644
--- a/Eigen/StdList
+++ b/Eigen/StdList
@@ -29,15 +29,14 @@
#include <list>
#if (defined(_MSC_VER) && defined(_WIN64)) || /* MSVC auto aligns in 64 bit builds */ \
- (defined(_MSC_VER) && _MSC_VER >= 1600) || /* MSVC 2010 ships alignment compatible STL libs */ \
+ (defined(_MSC_VER) && _MSC_VER >= 1600) || /* MSVC 2010 ships alignment compatible STL libs */ \
(defined(_GLIBCXX_VECTOR) && (!EIGEN_GNUC_AT_LEAST(4,1))) /* Note that before gcc-4.1 we already have: std::vector::resize(size_type,const T&). */
- //#define EIGEN_DEFINE_STL_LIST_SPECIALIZATION(...)
- #include "src/StlSupport/StdList.h"
+#define EIGEN_DEFINE_STL_LIST_SPECIALIZATION(...)
#else
-
- #include "src/StlSupport/StdList.h"
+
+#include "src/StlSupport/StdList.h"
#endif