mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 02:10:53 +01:00
unconditially add suppressing flag
This commit is contained in:
parent
a7324ce8fb
commit
5d74685798
1 changed files with 3 additions and 1 deletions
|
@ -115,6 +115,7 @@ else()
|
|||
list(APPEND LUAU_OPTIONS -Wimplicit-fallthrough)
|
||||
list(APPEND LUAU_OPTIONS -Wsign-compare) # This looks to be included in -Wall for GCC but not clang
|
||||
list(APPEND LUAU_OPTIONS -Wno-maybe-uninitialized)
|
||||
|
||||
endif()
|
||||
|
||||
if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
|
||||
|
@ -124,8 +125,9 @@ endif()
|
|||
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
||||
# Some gcc versions treat var in `if (type var = val)` as unused
|
||||
# Some gcc versions treat variables used in constexpr if blocks as unused
|
||||
# list(APPEND LUAU_OPTIONS -Wno-unused)
|
||||
list(APPEND LUAU_OPTIONS -Wno-unused)
|
||||
# GCC has some bugs where we optional<string> is treated as uninitialized if it is on a structg
|
||||
|
||||
endif()
|
||||
|
||||
# Enabled in CI; we should be warning free on our main compiler versions but don't guarantee being warning free everywhere
|
||||
|
|
Loading…
Add table
Reference in a new issue