Remove the warning suppression which broke OBS
The error was: -Wformat-security ignored without -Wformat
This commit is contained in:
parent
078fcf5118
commit
72dfd54933
1 changed files with 2 additions and 4 deletions
|
|
@ -108,8 +108,7 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang")
|
|||
"-Wno-unknown-pragmas"
|
||||
"-Wno-unused-function"
|
||||
"-Wno-unused-parameter"
|
||||
"-Wno-unused-variable"
|
||||
"-Wno-format")
|
||||
"-Wno-unused-variable")
|
||||
endif()
|
||||
|
||||
# To help debugging the link only
|
||||
|
|
@ -293,8 +292,7 @@ elseif(SFIZZ_AU)
|
|||
"-Wno-unknown-pragmas"
|
||||
"-Wno-unused-function"
|
||||
"-Wno-unused-parameter"
|
||||
"-Wno-unused-variable"
|
||||
"-Wno-format")
|
||||
"-Wno-unused-variable")
|
||||
endif()
|
||||
|
||||
# Installation
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue