summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-10-01 02:48:53 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-10-01 02:48:53 +0200
commitf189b1ab9bab8fb8a68a21c03c038c7d19751841 (patch)
tree5cab25b9967b164610a746ad5d9d6ca4a28cf4f7 /cppuhelper
parentab314659448e3a1f6f3aaf9e9e7408cfcb4f0c7e (diff)
prevent WaE with unused parameters
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/source/shlib.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx
index 09b70049ca0a..9ffb8c150e7c 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);