summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2011-11-01 00:51:46 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2011-11-01 01:00:24 +0100
commit125aa32e71eb9a8de6214a7f7bc3e3be13b14a7a (patch)
tree0c48038c582ab737a387d643e09ddf48d35200f6 /tools
parent1635f66a3dd35c5bf34143956940ec44fda751c2 (diff)
we need to assign this value also for non unix platforms (fdo#40801)
Diffstat (limited to 'tools')
-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;
}