This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.

11 lines
276 B
C++
Raw Normal View History

2024-04-16 21:34:06 +08:00
#if defined(__GNUC__) && __GNUC__ == 12
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized" // Workaround for GCC 12
#endif
#include <catch2/catch_all.hpp>
#if defined(__GNUC__) && __GNUC__ == 12
#pragma GCC diagnostic pop
#endif