From a3b0d947b026731af6d29891876593c82c2bc65b Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 26 Mar 2014 17:27:01 +0100 Subject: [PATCH] Work around MSC "'override' cannot be used with 'inline'" bug Change-Id: If736316402c49153d4c8552672c90552548f90b8 --- stoc/source/javavm/interact.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stoc/source/javavm/interact.cxx b/stoc/source/javavm/interact.cxx index e51d2782ad50..3edc3ffca683 100644 --- a/stoc/source/javavm/interact.cxx +++ b/stoc/source/javavm/interact.cxx @@ -38,7 +38,7 @@ class AbortContinuation: public: inline AbortContinuation() {} - virtual inline void SAL_CALL select() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE {} + virtual void SAL_CALL select() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE {} private: AbortContinuation(AbortContinuation &); // not implemented