diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-09-25 09:40:47 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-09-25 09:40:47 +0200 |
commit | f33e5e3aa7e98b9160de8eac6dcc582162aa44db (patch) | |
tree | c3fd7e131777bf93684003c1ad0d202b61d0bd47 /CMakeLists.txt | |
parent | cf59855e4296eb7d9eccb8527343a1b8c6b199b2 (diff) | |
download | synthpod-f33e5e3aa7e98b9160de8eac6dcc582162aa44db.tar.xz |
remove -Wredundant-decls.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index dd9539ed..089b1dc9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ set(SYNTHPOD_VERSION "${SYNTHPOD_MAJOR_VERSION}.${SYNTHPOD_MINOR_VERSION}.${SYNT add_definitions("-DSYNTHPOD_VERSION=\"${SYNTHPOD_VERSION}\"") set(CMAKE_C_FLAGS "-std=gnu11 -Wextra -Wno-unused-parameter -ffast-math -fvisibility=hidden ${CMAKE_C_FLAGS}") -set(CMAKE_C_FLAGS "-Wshadow -Wimplicit-function-declaration -Wredundant-decls -Wmissing-prototypes -Wstrict-prototypes ${CMAKE_C_FLAGS}") +set(CMAKE_C_FLAGS "-Wshadow -Wimplicit-function-declaration -Wmissing-prototypes -Wstrict-prototypes ${CMAKE_C_FLAGS}") set(CMAKE_CXX_FLAGS "-std=gnu++11 -Wextra -ffast-math -fvisibility=hidden ${CMAKE_CXX_FLAGS}") set(CMAKE_CXX_FLAGS "-Wshadow -Wredundant-decls -Weffc++ ${CMAKE_CXX_FLAGS}") |