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 4470063 commit ee2d798Copy full SHA for ee2d798
include/eigenpy/fwd.hpp
@@ -37,9 +37,9 @@
37
#elif defined(WIN32)
38
#define EIGENPY_PRAGMA(x) __pragma(#x)
39
#define EIGENPY_PRAGMA_MESSAGE(the_message) \
40
- EIGENPY_PRAGMA(message(EIGENPY_STRINGIZE(the_message)))
+ EIGENPY_PRAGMA(message(#the_message))
41
#define EIGENPY_PRAGMA_WARNING(the_message) \
42
- EIGENPY_PRAGMA(message("WARNING: " EIGENPY_STRINGIZE(the_message)))
+ EIGENPY_PRAGMA(message(EIGENPY_STRINGCAT("WARNING: ", the_message)))
43
#endif
44
45
#define EIGENPY_DEPRECATED_MACRO(macro, the_message) \
0 commit comments