Fix my stupidity (WARNING and ERROR pragmas now work as intended)

This commit is contained in:
Tulpen 2023-05-28 00:15:03 +01:00
parent f7c1061f9e
commit 374c825f9f

View file

@ -5,5 +5,5 @@
#define MESSAGE(x) PRAGMA(message(x))
#define TODO(x) PRAGMA(message("TODO: " x))
#define WARNING(x) PRAGMA(GCC warning(x))
#define ERROR(x) PRAGMA(GCC error(x))
#define WARNING(x) PRAGMA(GCC warning x)
#define ERROR(x) PRAGMA(GCC error x)