diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-10-13 17:08:00 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-10-14 08:33:21 +0200 |
commit | e00a5757e47cf783d7948ad850cb6fa76b98d73a (patch) | |
tree | 29b12842ddcca9fb54b29fea7041b56bdb8a2542 /bridges/inc | |
parent | 5d9e33068e756b4e74aa2a5e8d9ed16dabe27f29 (diff) |
-Werror,-Wmicrosoft-exception-spec (clang-cl)
> C:/lo/core/bridges/source/cpp_uno/msvc_shared/except.cxx(124,11): error: exception specification in declaration does not match previous declaration [-Werror,-Wmicrosoft-exception-spec]
> RTTInfos::RTTInfos() throw() {}
> ^
> C:/lo/core/bridges/inc\msvc/except.hxx(93,5): note: previous declaration is here
> RTTInfos();
> ^
Change-Id: I7fa9d85de70d1398f89443b202b9b60c36dcc46a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104243
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'bridges/inc')
-rw-r--r-- | bridges/inc/msvc/except.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/inc/msvc/except.hxx b/bridges/inc/msvc/except.hxx index 91a6441006a3..aba0ce46248e 100644 --- a/bridges/inc/msvc/except.hxx +++ b/bridges/inc/msvc/except.hxx @@ -90,7 +90,7 @@ class RTTInfos final osl::Mutex m_aMutex; t_string2PtrMap m_allRTTI; - RTTInfos(); + RTTInfos() throw(); ExceptionTypeInfoWrapper* getInfo(OUString const& rUNOname) throw(); public: |