summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/source/stream/stream.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx
index 6f350abf0d31..ede47ed28dd7 100644
--- a/tools/source/stream/stream.cxx
+++ b/tools/source/stream/stream.cxx
@@ -1185,8 +1185,9 @@ SvStream& SvStream::operator<< ( const double& r )
}
else
#endif
- WRITENUMBER_WITHOUT_SWAP(double,r)
-
+ {
+ WRITENUMBER_WITHOUT_SWAP(double,r);
+ }
return *this;
}