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
|
|
|
|
|
2023-03-01 19:51:04 +08:00
|
|
|
#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
|