diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-03-27 22:26:05 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-03-27 22:26:25 +0200 |
commit | 9e46c8fcb85157b9f3e301e9a500c55f807526d4 (patch) | |
tree | 2913f44bb2b8385b160a70aa9de8e4f63c9430bc | |
parent | dfdd09fa867cfddb6c09a85028e73287b3e5c9b2 (diff) |
2nd param of __cxa_throw is void* in GCC <= 4.6
-rw-r--r-- | bridges/source/cpp_uno/mingw_intel/share.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/source/cpp_uno/mingw_intel/share.hxx b/bridges/source/cpp_uno/mingw_intel/share.hxx index e6e4337f32c0..58fb72dc06cd 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 |