We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 029c81f commit 25ffb23Copy full SHA for 25ffb23
include/eigenpy/fwd.hpp
@@ -36,11 +36,11 @@
36
#if defined(EIGENPY_CLANG_COMPILER) || defined(EIGENPY_GCC_COMPILER)
37
#define EIGENPY_PRAGMA(x) _Pragma(#x)
38
#define EIGENPY_PRAGMA_MESSAGE(the_message) \
39
- EIGENPY_PRAGMA(GCC message the_message)
+ EIGENPY_PRAGMA(GCC message #the_message)
40
#define EIGENPY_PRAGMA_WARNING(the_message) \
41
- EIGENPY_PRAGMA(GCC warning the_message)
+ EIGENPY_PRAGMA(GCC warning #the_message)
42
#define EIGENPY_PRAGMA_DEPRECATED(the_message) \
43
- EIGENPY_PRAGMA_WARNING(Deprecated : the_message)
+ EIGENPY_PRAGMA_WARNING(Deprecated : #the_message)
44
#define EIGENPY_PRAGMA_DEPRECATED_HEADER(old_header, new_header) \
45
EIGENPY_PRAGMA_WARNING( \
46
Deprecated header file : #old_header has been replaced \
0 commit comments