Jonathan Wakely c8ccc1a38e Do not undefine __STRICT_ANSI__
The `__STRICT_ANSI__` macro is defined by the compiler and it's undefined to undefine or redefine it.

Using `-U__STRICT_ANSI__ -std=c++11` is just silly. If you don't want strict mode, don't ask for strict mode. Certainly don't ask for strict mode and then undefined the macro that is defined by strict mode.

The correct solution is `-std=gnu++11` which doesn't define the macro in the first place.
2020-06-07 19:56:34 -05:00
..
2019-12-01 23:52:36 -06:00
2020-06-07 19:56:34 -05:00
2014-12-27 22:58:01 +01:00