bridges/source/cpp_uno/gcc3_wasm/abi.hxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit d9d63ba76555c4cefea6ab5ff9caf21fc699d039
Author:     Stephan Bergmann <stephan.bergm...@allotropia.de>
AuthorDate: Fri Jun 21 08:37:14 2024 +0200
Commit:     Stephan Bergmann <stephan.bergm...@allotropia.de>
CommitDate: Fri Jun 21 09:51:16 2024 +0200

    Don't expect _LIBCXXABI_DTOR_FUNC to be available
    
    ...as apparently happens to be the case with some older emsdk versions, see
    <https://ci.libreoffice.org//job/lo_daily_tb_linux_wasm/743/> choking on 
that
    
    Change-Id: Ie2f4b9684c794fdd51142eb81d96dd3332911272
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169319
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <stephan.bergm...@allotropia.de>

diff --git a/bridges/source/cpp_uno/gcc3_wasm/abi.hxx 
b/bridges/source/cpp_uno/gcc3_wasm/abi.hxx
index 160c15ee8259..74e92bb9bf0a 100644
--- a/bridges/source/cpp_uno/gcc3_wasm/abi.hxx
+++ b/bridges/source/cpp_uno/gcc3_wasm/abi.hxx
@@ -70,9 +70,9 @@ struct __cxa_exception
     std::type_info* exceptionType;
 #if 1 //MODIFIED: #ifdef __USING_WASM_EXCEPTIONS__
     // In wasm, destructors return their argument
-    void*(_LIBCXXABI_DTOR_FUNC* exceptionDestructor)(void*);
+    void*(/*MODIFIED: _LIBCXXABI_DTOR_FUNC*/ *exceptionDestructor)(void*);
 #else
-    void(_LIBCXXABI_DTOR_FUNC* exceptionDestructor)(void*);
+    void(/*MODIFIED: _LIBCXXABI_DTOR_FUNC*/ *exceptionDestructor)(void*);
 #endif
     void* /*MODIFIED: std::unexpected_handler*/ unexpectedHandler;
     std::terminate_handler terminateHandler;

Reply via email to