aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/btl
diff options
context:
space:
mode:
authorGravatar Marc Glisse <marc.glisse@gmail.com>2011-11-26 17:55:18 -0500
committerGravatar Marc Glisse <marc.glisse@gmail.com>2011-11-26 17:55:18 -0500
commit8107b3da753dd03b81e67c4bfad8006cac8377ca (patch)
tree16aa7dbd6fe54b9a54aad3f28b5f47e77700e7ce /bench/btl
parentf56316f7ede6de2d253f7e8174cacfd31599aa6e (diff)
bug #383 - EIGEN_ASM_COMMENT broken in C++11
this is due to the new user-defined literals syntax.
Diffstat (limited to 'bench/btl')
-rw-r--r--bench/btl/generic_bench/btl.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/btl/generic_bench/btl.hh b/bench/btl/generic_bench/btl.hh
index 17cd397a1..f1a88ff74 100644
--- a/bench/btl/generic_bench/btl.hh
+++ b/bench/btl/generic_bench/btl.hh
@@ -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