summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2011-10-04 10:16:29 +0300
committerTor Lillqvist <tlillqvist@suse.com>2011-10-04 10:27:02 +0300
commitc963747ed858007967f83d0a1f67cdcc57b3d695 (patch)
tree029127e31f68864fc285d14973abdc12e05845eb /tools
parent9a113a7d931f140b6a8e7f57937d51063244b1c8 (diff)
WaE: unreferenced formal parameter
Diffstat (limited to 'tools')
-rw-r--r--tools/source/stream/stream.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx
index ca3d004e08dc..4609e65e0f0c 100644
--- a/tools/source/stream/stream.cxx
+++ b/tools/source/stream/stream.cxx
@@ -1310,6 +1310,8 @@ SvStream& SvStream::operator>>(double& r)
if (bSwap)
SwapDouble(n);
r = n;
+#else
+ (void) r;
#endif
}
return *this;