Files
spdlog/tests/main.cpp

12 lines
290 B
C++
Raw Permalink Normal View History

2022-10-31 17:09:45 +02:00
#if defined(__GNUC__) && __GNUC__ == 12
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wmaybe-uninitialized" // Workaround for GCC 12
2022-09-30 13:20:15 +02:00
#endif
2015-05-15 20:30:37 +03:00
#define CATCH_CONFIG_MAIN
2022-09-30 13:20:15 +02:00
#include "catch.hpp"
2022-10-31 17:09:45 +02:00
#if defined(__GNUC__) && __GNUC__ == 12
# pragma GCC diagnostic pop
2022-09-30 13:20:15 +02:00
#endif