bug #383 - EIGEN_ASM_COMMENT broken in C++11

this is due to the new user-defined literals syntax.
This commit is contained in:
Marc Glisse 2011-11-26 17:55:18 -05:00
parent 99d8e5de2b
commit 874d4e9f30
2 changed files with 2 additions and 2 deletions

View File

@ -252,7 +252,7 @@
#define EIGEN_UNUSED_VARIABLE(var) (void)var;
#if (defined __GNUC__)
#define EIGEN_ASM_COMMENT(X) asm("#"X)
#define EIGEN_ASM_COMMENT(X) asm("#" X)
#else
#define EIGEN_ASM_COMMENT(X)
#endif

View File

@ -39,7 +39,7 @@
#endif
#if (defined __GNUC__)
#define BTL_ASM_COMMENT(X) asm("#"X)
#define BTL_ASM_COMMENT(X) asm("#" X)
#else
#define BTL_ASM_COMMENT(X)
#endif