summaryrefslogtreecommitdiffstats
path: root/tools/source
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2013-06-30 02:21:31 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2013-06-30 02:21:31 -0500
commitea862e1ed0237103e7ae6eea36897ddb82b1dcbc (patch)
treea66133ed6f1477bc1d72a2ca739393f1e731d78e /tools/source
parentClean String and sal_Bool in tools (diff)
downloadcore-ea862e1ed0237103e7ae6eea36897ddb82b1dcbc.tar.gz
core-ea862e1ed0237103e7ae6eea36897ddb82b1dcbc.zip
WaE clang unhappy with an ambiguous if/else
Change-Id: I1e419793454ad5401a2d55a2c709bab08f4cf053
Diffstat (limited to 'tools/source')
-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;
}