From e9a09f9e4a308052c2ca6d6435c01b000004d7bf Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 22 Oct 2012 13:41:45 +0200 Subject: dummy_can_throw_anything reportedly needed at least with GCC 4.5.1, too ...see "RuntimeException while building" Change-Id: I038806d4ca1d7a2a2518106ba722509fbe3a7843 --- bridges/source/cpp_uno/gcc3_linux_intel/callvirtualmethod.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bridges') diff --git a/bridges/source/cpp_uno/gcc3_linux_intel/callvirtualmethod.cxx b/bridges/source/cpp_uno/gcc3_linux_intel/callvirtualmethod.cxx index 56612d2f6d3a..cb4b57402999 100644 --- a/bridges/source/cpp_uno/gcc3_linux_intel/callvirtualmethod.cxx +++ b/bridges/source/cpp_uno/gcc3_linux_intel/callvirtualmethod.cxx @@ -67,7 +67,7 @@ void CPPU_CURRENT_NAMESPACE::callVirtualMethod( // unexpected size of int assert(nStackLongs && pStackLongs); // no stack -#ifdef __clang__ +#if defined __clang__ || __GNUC__ == 4 && __GNUC_MINOR__ <= 6 if (! pAdjustedThisPtr) CPPU_CURRENT_NAMESPACE::dummy_can_throw_anything("xxx"); // address something #endif -- cgit