summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2017-06-17 08:15:32 +0100
committerMaxime Coste <mawww@kakoune.org>2017-06-17 08:15:32 +0100
commit0aeb2cd64f94c76860f2ae386e88f3c9d2fff578 (patch)
treef195cd3383f7f65020bd88b0bcb4d8692ea236f1 /src
parentf9c48237a7d3a8c2aae44c532a398f62ea0100f1 (diff)
Disable -Wnoexcept-type warning
We dont really care that the mangled name will change, Kakoune is not built as a library. Fixes #1436
Diffstat (limited to 'src')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 25b53ffa..186b0075 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -59,7 +59,7 @@ ifeq ($(static),yes)
LDFLAGS += -static -pthread
endif
-CXXFLAGS += -pedantic -std=gnu++11 -g -Wall -Wextra -Wno-unused-parameter -Wno-reorder -Wno-sign-compare -Wno-address
+CXXFLAGS += -pedantic -std=gnu++11 -g -Wall -Wextra -Wno-unused-parameter -Wno-reorder -Wno-sign-compare -Wno-address -Wno-noexcept-type -Wno-unknown-warning-option
all : kak