aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-01-27 19:08:20 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-01-27 19:08:20 +0000
commit4ac8cabf8a645b9a296ab97110ff39d91a9f1916 (patch)
treebb422d31b60b5f03a95c7b97e998f769cef3a318 /Eigen/src/Core/util
parent9b06e072a5354ba1ac0d7a4836e81c43880ea5f6 (diff)
fix my previous commit with EIGEN_EMPTY macro bug
Diffstat (limited to 'Eigen/src/Core/util')
-rw-r--r--Eigen/src/Core/util/Macros.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Eigen/src/Core/util/Macros.h b/Eigen/src/Core/util/Macros.h
index a7137cc03..86ae068b1 100644
--- a/Eigen/src/Core/util/Macros.h
+++ b/Eigen/src/Core/util/Macros.h
@@ -168,6 +168,9 @@ using Eigen::ei_cos;
// just an empty macro !
#define EIGEN_EMPTY
+#define EIGEN_CAT2(a,b) a ## b
+#define EIGEN_CAT(a,b) EIGEN_CAT2(a,b)
+
// format used in Eigen's documentation
// needed to define it here as escaping characters in CMake add_definition's argument seems very problematic.
#define EIGEN_DOCS_IO_FORMAT IOFormat(3, AlignCols, " ", "\n", "", "")