diff options
Diffstat (limited to 'shared/warn_static.h')
-rw-r--r-- | shared/warn_static.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shared/warn_static.h b/shared/warn_static.h index bb4f4a6f..66513871 100644 --- a/shared/warn_static.h +++ b/shared/warn_static.h @@ -20,15 +20,15 @@ Usage: #define MAKE_STRING(NUM) MAKE_STRING_SUB(NUM) #define warn_static(TXT) \ -__pragma(message (__FILE__ "(" MAKE_STRING(__LINE__) "): Warning: " ## TXT)) + __pragma(message (__FILE__ "(" MAKE_STRING(__LINE__) "): Warning: " ## TXT)) #elif defined __GNUC__ #define LOKI_CONCAT( X, Y ) LOKI_CONCAT_SUB( X, Y ) #define LOKI_CONCAT_SUB( X, Y ) X##Y #define warn_static(TXT) \ -typedef int STATIC_WARNING __attribute__ ((deprecated)); \ -enum { LOKI_CONCAT(warn_static_dummy_value, __LINE__) = sizeof(STATIC_WARNING) }; + typedef int STATIC_WARNING __attribute__ ((deprecated)); \ + enum { LOKI_CONCAT(warn_static_dummy_value, __LINE__) = sizeof(STATIC_WARNING) }; #endif |