123456789101112131415161718192021 |
- #ifndef TWOBLUECUBES_CATCH_REENABLE_WARNINGS_H_INCLUDED
- #define TWOBLUECUBES_CATCH_REENABLE_WARNINGS_H_INCLUDED
- #ifdef __clang__
- # ifdef __ICC
- # pragma warning(pop)
- # else
- # pragma clang diagnostic pop
- # endif
- #elif defined __GNUC__
- # pragma GCC diagnostic pop
- #endif
- #endif
|