aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Core
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-03-26 09:13:11 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-03-26 09:13:11 +0000
commita994e51c96565d52edb80996167b61e67b0deba7 (patch)
tree39e32584b57bb2fff59b7b56898dc608c6a86a56 /Eigen/Core
parent729618c945aaf5183316abd1badc4921cecd86f1 (diff)
* add Gael copyright lines on 2 more files
* macro renaming: EIGEN_NDEBUG becomes EIGEN_NO_DEBUG as this is much better (and similar to Qt) and EIGEN_CUSTOM_ASSERT becomes EIGEN_USE_CUSTOM_ASSERT * protect Core header by a EIGEN_CORE_H
Diffstat (limited to 'Eigen/Core')
-rw-r--r--Eigen/Core6
1 files changed, 5 insertions, 1 deletions
diff --git a/Eigen/Core b/Eigen/Core
index f56a13ab8..6da789afe 100644
--- a/Eigen/Core
+++ b/Eigen/Core
@@ -1,7 +1,10 @@
+#ifndef EIGEN_CORE_H
+#define EIGEN_CORE_H
+
#include <cstdlib>
#include <cmath>
#include <complex>
-#ifndef EIGEN_CUSTOM_ASSERT
+#ifndef EIGEN_USE_CUSTOM_ASSERT
#include <cassert>
#endif
#include <iostream>
@@ -43,3 +46,4 @@ namespace Eigen {
} // namespace Eigen
+#endif // EIGEN_CORE_H