mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 14:25:44 +08:00
more macro crimes
This commit is contained in:
parent
dafee8bbef
commit
50e8dd0d71
@ -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};
|
||||
|
Loading…
Reference in New Issue
Block a user