Files
spdlog/tests/main.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
276 B
C++
Raw 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
#include <catch2/catch_all.hpp>
2022-09-30 13:20:15 +02:00
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