diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2011-10-04 10:16:29 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2011-10-04 10:27:02 +0300 |
commit | c963747ed858007967f83d0a1f67cdcc57b3d695 (patch) | |
tree | 029127e31f68864fc285d14973abdc12e05845eb /tools | |
parent | 9a113a7d931f140b6a8e7f57937d51063244b1c8 (diff) |
WaE: unreferenced formal parameter
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/stream/stream.cxx | 2 |
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; |