more macro crimes

This commit is contained in:
Vighnesh 2024-10-11 15:47:58 -07:00
parent dafee8bbef
commit 50e8dd0d71

View File

@ -949,9 +949,11 @@ DifferResult diff(TypeId ty1, TypeId ty2)
{
#if defined(__GNUC__) && defined(__linux__)
#pragma GCC diagnostic push
#if !defined(__has_warning) || __has_warning("-Wmaybe-uninitialized")
#if defined(__has_warning)
#if __has_warning("-Wmaybe-uninitialized")
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#endif
#endif
#endif
DifferEnvironment differEnv{ty1, ty2, std::nullopt, std::nullopt};