From 125aa32e71eb9a8de6214a7f7bc3e3be13b14a7a Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Tue, 1 Nov 2011 00:51:46 +0100 Subject: we need to assign this value also for non unix platforms (fdo#40801) --- tools/source/stream/stream.cxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'tools') 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; } -- cgit