summaryrefslogtreecommitdiff
path: root/vcl/osx/salframe.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-10-04 09:59:34 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-10-04 14:23:17 +0200
commit2debad5fbe059b504da14e65719e6d18c1dc4989 (patch)
tree6989e1e13dd806952f387a591ef77ee288f57569 /vcl/osx/salframe.cxx
parent316557d6f4fe8a15112b39f3c808dda38cce018c (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 'vcl/osx/salframe.cxx')
-rw-r--r--vcl/osx/salframe.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/osx/salframe.cxx b/vcl/osx/salframe.cxx
index 8a18aa8e39b9..3057611d12b8 100644
--- a/vcl/osx/salframe.cxx
+++ b/vcl/osx/salframe.cxx
@@ -211,7 +211,7 @@ SAL_WNODEPRECATED_DECLARATIONS_POP
mpNSWindow = [[SalFrameWindow alloc] initWithSalFrame: this];
mpNSView = [[SalFrameView alloc] initWithSalFrame: this];
}
- @catch ( id exception )
+ @catch ( id )
{
std::abort();
}