spdlog/tests/main.cpp

11 lines
275 B
C++
Raw Normal View History

2022-10-31 23:09:45 +08:00
#if defined(__GNUC__) && __GNUC__ == 12
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wmaybe-uninitialized" // Workaround for GCC 12
2022-09-30 19:20:15 +08:00
#endif
#include <catch2/catch_all.hpp>
2022-09-30 19:20:15 +08:00
2022-10-31 23:09:45 +08:00
#if defined(__GNUC__) && __GNUC__ == 12
# pragma GCC diagnostic pop
2022-09-30 19:20:15 +08:00
#endif