Open
Description
Recent changes seem to have introduced a "noexcept" call. When building with clang (>3.2) but without -std=c++11, I get the following error:
src/tests/TestTestMacros.cpp:167:27: error: expected ';' at end of declaration list
~FixtureDtorThrows() _NOEXCEPT_OP(false) {
^
;
1 error generated.
make[3]: *** [src/tests/TestTestMacros.o] Error 1
At first glance I'm guessing this is because the noexcept(false) that this macro resolves is not valid c++98?
Thanks!