diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2020-10-26 14:11:53 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2020-10-29 18:14:40 +0100 |
commit | bd5152a9e734c90dd4ff1d46615256fbf72cc648 (patch) | |
tree | 59fe5af022cf934740a073427328728b93d36ec7 /CMakeLists.txt | |
parent | 322a60aa392ae3a6981e16c438bcc772dc6ee878 (diff) | |
download | nncmpp-bd5152a9e734c90dd4ff1d46615256fbf72cc648.tar.gz nncmpp-bd5152a9e734c90dd4ff1d46615256fbf72cc648.tar.xz nncmpp-bd5152a9e734c90dd4ff1d46615256fbf72cc648.zip |
Bump termo
This allows us to get rid of a compiler flag.
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 b6cd6d9..082a97a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required (VERSION 2.8.5) # Moar warnings if ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUCC) - set (wdisabled "-Wno-unused-function -Wno-implicit-fallthrough") + set (wdisabled "-Wno-unused-function") set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99 -Wall -Wextra ${wdisabled}") endif ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUCC) |