diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-04 09:59:34 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-04 14:23:17 +0200 |
commit | 2debad5fbe059b504da14e65719e6d18c1dc4989 (patch) | |
tree | 6989e1e13dd806952f387a591ef77ee288f57569 /solenv/gbuild | |
parent | 316557d6f4fe8a15112b39f3c808dda38cce018c (diff) |
enable -Wunused-exception-parameter on clang
which is useful because our MSVC build will warn about this by default
Change-Id: Idcc0f08b69b6eda4dd2ab010a5fdb674787bebcf
Reviewed-on: https://gerrit.libreoffice.org/80184
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'solenv/gbuild')
-rw-r--r-- | solenv/gbuild/platform/com_GCC_defs.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/solenv/gbuild/platform/com_GCC_defs.mk b/solenv/gbuild/platform/com_GCC_defs.mk index 654e75f7de25..fc3ba6958321 100644 --- a/solenv/gbuild/platform/com_GCC_defs.mk +++ b/solenv/gbuild/platform/com_GCC_defs.mk @@ -104,7 +104,9 @@ gb_LinkTarget_LDFLAGS += -Wl,--gc-sections endif ifeq ($(COM_IS_CLANG),TRUE) -gb_CXXFLAGS_COMMON += -Wimplicit-fallthrough +gb_CXXFLAGS_COMMON += \ + -Wimplicit-fallthrough \ + -Wunused-exception-parameter else gb_CFLAGS_COMMON += \ -Wduplicated-cond \ |