-
-
Notifications
You must be signed in to change notification settings - Fork 90
Closed
Labels
Description
In system.hpp during compilation we get this error:
/usr/local/include/infoware/system.hpp:32:4: error: expected identifier before numeric constant
32 | linux,
| ^~~~~
/usr/local/include/infoware/system.hpp:32:4: error: expected '}' before numeric constantIt probably happens because on Linux gcc defines "linux" pre-processor definition, so the easiest way for me to "fix" it was to #undef linux before.