From ea862e1ed0237103e7ae6eea36897ddb82b1dcbc Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Sun, 30 Jun 2013 02:21:31 -0500 Subject: WaE clang unhappy with an ambiguous if/else Change-Id: I1e419793454ad5401a2d55a2c709bab08f4cf053 --- tools/source/stream/stream.cxx | 5 +++-- 1 file 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; } -- cgit v1.2.3