diff options
-rw-r--r-- | bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx | 6 |
1 files changed, 6 insertions, 0 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 120ac49e66a1..7d1c1fad6dc4 100644 --- a/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx +++ b/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx @@ -252,6 +252,12 @@ void #include "mscx.hxx" #include "bridges/cpp_uno/shared/except.hxx" +//TOOD: Work around missing __CxxDetectRethrow in clang-cl for now (predefined +// in cl, <www.geoffchappell.com/studies/msvc/language/predefined/index.html>): +#if defined __clang__ +extern "C" int __cdecl __CxxDetectRethrow(void *); +#endif + #pragma pack(push, 8) using namespace ::com::sun::star::uno; |