[Libreoffice-commits] core.git: stoc/source

Stephan Bergmann sbergman at redhat.com
Wed Mar 26 09:27:29 PDT 2014


 stoc/source/javavm/interact.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a3b0d947b026731af6d29891876593c82c2bc65b
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Wed Mar 26 17:27:01 2014 +0100

    Work around MSC "'override' cannot be used with 'inline'" bug
    
    Change-Id: If736316402c49153d4c8552672c90552548f90b8

diff --git a/stoc/source/javavm/interact.cxx b/stoc/source/javavm/interact.cxx
index e51d278..3edc3ff 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


More information about the Libreoffice-commits mailing list