summaryrefslogtreecommitdiff
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
parent710f41b7aec8e7d35a0da8be332aa289f98942af (diff)
WaE clang unhappy with an ambiguous if/else
Change-Id: I1e419793454ad5401a2d55a2c709bab08f4cf053
-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;
}