summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/source/stream/stream.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx
index 34dc93d66bd7..2b9295b436a4 100644
--- a/tools/source/stream/stream.cxx
+++ b/tools/source/stream/stream.cxx
@@ -1308,10 +1308,8 @@ SvStream& SvStream::operator>>(double& r)
#if defined UNX
if (bSwap)
SwapDouble(n);
- r = n;
-#else
- (void) r;
#endif
+ r = n;
}
return *this;
}