diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-12-22 11:09:57 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-12-22 11:09:57 +0100 |
commit | 9598e9061f76439daa841f991fbec05412826971 (patch) | |
tree | 2dd9ed59bce80eed890b868e0c17a73c7b6adeab /cppuhelper/source | |
parent | 6476aba045d71eaf53e03d4d0352f82e3eba6920 (diff) |
-Werror,-Winfinite-recursion
Change-Id: I483cd3f3a3ba87c416985fd86b9d5b711a2a18fb
Diffstat (limited to 'cppuhelper/source')
-rw-r--r-- | cppuhelper/source/exc_thrower.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppuhelper/source/exc_thrower.cxx b/cppuhelper/source/exc_thrower.cxx index 0b54a7895827..f5bc1d5aa9d5 100644 --- a/cppuhelper/source/exc_thrower.cxx +++ b/cppuhelper/source/exc_thrower.cxx @@ -157,7 +157,7 @@ void ExceptionThrower::release() throw () void ExceptionThrower::throwException( Any const & exc ) throw (Exception, std::exception) { OSL_FAIL( "unexpected!" ); - throwException( exc ); + cppu::throwException( exc ); } |