diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-06-30 02:21:31 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-06-30 02:21:31 -0500 |
commit | ea862e1ed0237103e7ae6eea36897ddb82b1dcbc (patch) | |
tree | a66133ed6f1477bc1d72a2ca739393f1e731d78e /tools | |
parent | 710f41b7aec8e7d35a0da8be332aa289f98942af (diff) |
WaE clang unhappy with an ambiguous if/else
Change-Id: I1e419793454ad5401a2d55a2c709bab08f4cf053
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/stream/stream.cxx | 5 |
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; } |