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

Stephan Bergmann sbergman at redhat.com
Tue Dec 3 09:04:54 PST 2013


 bridges/source/jni_uno/jni_uno2java.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b40dcdf4f5a03b71fe9e45f8f24fcaf25fd2febf
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Dec 3 18:04:20 2013 +0100

    -Werror=unused-parameter
    
    Change-Id: I4dfa96b8ea2684969d9eeecfd88136742ce2d4a1

diff --git a/bridges/source/jni_uno/jni_uno2java.cxx b/bridges/source/jni_uno/jni_uno2java.cxx
index 6ca7741..2465df3 100644
--- a/bridges/source/jni_uno/jni_uno2java.cxx
+++ b/bridges/source/jni_uno/jni_uno2java.cxx
@@ -527,7 +527,7 @@ void SAL_CALL UNO_proxy_free( uno_ExtEnvironment * env, void * proxy )
     UNO_proxy const * that = reinterpret_cast< UNO_proxy const * >( proxy );
     Bridge const * bridge = that->m_bridge;
 
-    assert(env == bridge->m_uno_env);
+    assert(env == bridge->m_uno_env); (void) env;
     SAL_INFO("bridges", "freeing binary uno proxy: " << that->m_oid);
 
     try


More information about the Libreoffice-commits mailing list