diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-12-10 15:25:34 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-12-10 20:51:00 +0100 |
commit | 4b0c05f5c15f460118ef28ce5925a1b732e370c3 (patch) | |
tree | ea828b256ac97da5c86fe2483835e30656c3447f /bridges | |
parent | 7e5de5480255c830ec8ce88b6fcd39e3a36672e8 (diff) |
loplugin:unusedmember (clang-cl)
(The struct that is the type of EHExceptionRecord::params does not need a name.)
Change-Id: I372630563dce26c3ac190a9492eabfad9a55a943
Reviewed-on: https://gerrit.libreoffice.org/84861
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx b/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx index c725bca543c8..daa0426a2c17 100644 --- a/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx +++ b/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx @@ -793,7 +793,7 @@ bool DetectRethrow(void* ppExcept) struct _EXCEPTION_RECORD* ExceptionRecord; PVOID ExceptionAddress; DWORD NumberParameters; - struct alignas(8) EHParameters + struct alignas(8) { DWORD magicNumber; PVOID pExceptionObject; |