diff options
author | jan Iversen <jani@libreoffice.org> | 2018-03-16 09:21:12 +0100 |
---|---|---|
committer | jan Iversen <jani@libreoffice.org> | 2018-03-16 09:21:50 +0100 |
commit | 09d842887d7fe6bc7854290f8d87c50fa48e6d4e (patch) | |
tree | 90719e14009bd1c5a8ac5d7f95bfe9e3ccdccf1b /bridges | |
parent | 064ad89c0e929cab771c6bda38bad5637db00575 (diff) |
iOS, added description of __cxa_throw
Change-Id: I6a537957528a0d2de989b347bde1167e21544236
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/gcc3_ios/except.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bridges/source/cpp_uno/gcc3_ios/except.cxx b/bridges/source/cpp_uno/gcc3_ios/except.cxx index 1d1eeccd97ae..747ebe3d7144 100644 --- a/bridges/source/cpp_uno/gcc3_ios/except.cxx +++ b/bridges/source/cpp_uno/gcc3_ios/except.cxx @@ -338,6 +338,9 @@ void raiseException( uno_Any * pUnoExc, uno_Mapping * pUno2Cpp ) } } + // void __cxa_throw(void* thrown_exception, + // struct std::type_info * tinfo, + // void (*dest)(void*)); __cxxabiv1::__cxa_throw( pCppExc, rtti, deleteException ); } |