aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/Macros.h
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-12-27 15:07:11 +0000
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-12-27 15:07:11 +0000
commit8db9acbc163c497e1d8d1450b1b6c7cf35687ab9 (patch)
treeccec2e45b747e4414bda25e291faf62a178f5dfc /Eigen/src/Core/util/Macros.h
parent840c4e1ab5151ca8288721c10c1d92e35df61581 (diff)
Move doxygen comments for EIGEN_NO_DEBUG from source to I14.
This reverts changeset 76fbe94279bda314e717cb3f98b46b253d081993 . Benoit and I agree that my approach there (to use doxygen comments) pollutes the code too much.
Diffstat (limited to 'Eigen/src/Core/util/Macros.h')
-rw-r--r--Eigen/src/Core/util/Macros.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/Eigen/src/Core/util/Macros.h b/Eigen/src/Core/util/Macros.h
index 2e1f905b7..1de2c6f26 100644
--- a/Eigen/src/Core/util/Macros.h
+++ b/Eigen/src/Core/util/Macros.h
@@ -109,19 +109,6 @@
#define EIGEN_DEBUG_VAR(x) std::cerr << #x << " = " << x << std::endl;
-#ifdef EIGEN_PARSED_BY_DOXYGEN
- /** \def EIGEN_NO_DEBUG
- * \ingroup Core_Module
- * \brief If defined, Eigen's assertions are disabled.
- * \details Disabling run-time assertions improves the performance, but it is dangerous because the
- * assertions guard against programming errors. By default, the EIGEN_NO_DEBUG macro is not defined and
- * Eigen's run-time assertions are thus enabled. However, if the NDEBUG macro is defined (this is a
- * standard C++ macro which disables all asserts), then the EIGEN_NO_DEBUG macro will also be defined, and
- * so Eigen's assertions will also be disabled.
- */
- #define EIGEN_NO_DEBUG
-#endif
-
#ifdef NDEBUG
# ifndef EIGEN_NO_DEBUG
# define EIGEN_NO_DEBUG