[Libreoffice-commits] .: bridges/source
Stephan Bergmann
sbergmann at kemper.freedesktop.org
Tue Mar 27 13:26:32 PDT 2012
bridges/source/cpp_uno/mingw_intel/share.hxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 9e46c8fcb85157b9f3e301e9a500c55f807526d4
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Tue Mar 27 22:26:05 2012 +0200
2nd param of __cxa_throw is void* in GCC <= 4.6
diff --git a/bridges/source/cpp_uno/mingw_intel/share.hxx b/bridges/source/cpp_uno/mingw_intel/share.hxx
index e6e4337..58fb72d 100644
--- a/bridges/source/cpp_uno/mingw_intel/share.hxx
+++ b/bridges/source/cpp_uno/mingw_intel/share.hxx
@@ -83,7 +83,7 @@ extern "C" CPPU_CURRENT_NAMESPACE::__cxa_eh_globals *__cxa_get_globals () throw(
extern "C" void *__cxa_allocate_exception(
std::size_t thrown_size ) throw();
extern "C" void __cxa_throw (
- void *thrown_exception, std::type_info *tinfo, void (*dest) (void *) ) __attribute__((noreturn));
+ void *thrown_exception, void *tinfo, void (*dest) (void *) ) __attribute__((noreturn));
#endif
namespace CPPU_CURRENT_NAMESPACE
More information about the Libreoffice-commits
mailing list