From 4fbbfc2269d9671415efea2d946176abb83c5930 Mon Sep 17 00:00:00 2001 From: Douglas Mencken Date: Thu, 22 May 2014 13:08:14 -0400 Subject: WoE: while (..) {} instead of while(..); MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "warning: suggest a space before ';' or explicit braces around empty body" Change-Id: I71a55cc888d3480217621491ecace7d0af3dca6e Reviewed-on: https://gerrit.libreoffice.org/9441 Reviewed-by: Tomaž Vajngerl Tested-by: Tomaž Vajngerl --- unotools/source/config/fontcfg.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unotools/source') diff --git a/unotools/source/config/fontcfg.cxx b/unotools/source/config/fontcfg.cxx index fccab2d71125..e442870faa75 100644 --- a/unotools/source/config/fontcfg.cxx +++ b/unotools/source/config/fontcfg.cxx @@ -700,7 +700,7 @@ static bool ImplKillTrailingWithExceptions( OUString& rName, const char* const* else { // skip exception strings - while( *++ppStr ); + while( *++ppStr ) {} } } -- cgit