spdlog/tests/main.cpp

12 lines
290 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
2015-05-16 01:30:37 +08:00
#define CATCH_CONFIG_MAIN
2022-09-30 19:20:15 +08:00
#include "catch.hpp"
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