diff --git a/cstdint_test.cpp b/cstdint_test.cpp index c7a9c0c..08c13be 100644 --- a/cstdint_test.cpp +++ b/cstdint_test.cpp @@ -18,8 +18,12 @@ #include #ifdef NDEBUG -#error This test makes no sense with NDEBUG defined -#endif +int main() +{ + std::cout << "This test makes no sense with NDEBUG defined.\n"; + return 0; +} +#else #ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION // @@ -212,5 +216,4 @@ int main() std::cout << "OK\n"; return 0; } - - +#endif