diff options
| author | Maxime Coste <mawww@kakoune.org> | 2017-06-17 08:15:32 +0100 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2017-06-17 08:15:32 +0100 |
| commit | 0aeb2cd64f94c76860f2ae386e88f3c9d2fff578 (patch) | |
| tree | f195cd3383f7f65020bd88b0bcb4d8692ea236f1 /src | |
| parent | f9c48237a7d3a8c2aae44c532a398f62ea0100f1 (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/Makefile | 2 |
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 |
