[Libreoffice-commits] core.git: cppuhelper/source
Markus Mohrhard
markus.mohrhard at googlemail.com
Mon Sep 30 17:57:55 PDT 2013
cppuhelper/source/shlib.cxx | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit f189b1ab9bab8fb8a68a21c03c038c7d19751841
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date: Tue Oct 1 02:48:53 2013 +0200
prevent WaE with unused parameters
diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx
index 09b7004..9ffb8c1 100644
--- a/cppuhelper/source/shlib.cxx
+++ b/cppuhelper/source/shlib.cxx
@@ -265,6 +265,8 @@ Reference< XInterface > SAL_CALL loadSharedLibComponentFactory(
{
assert(rPath.isEmpty());
assert(!xKey.is());
+ (void) rPath;
+ (void) xKey;
#ifndef DISABLE_DYNLOADING
OUString moduleUri(uri);
More information about the Libreoffice-commits
mailing list