diff options
author | Douglas Mencken <dougmencken@gmail.com> | 2014-05-22 13:08:14 -0400 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2014-05-22 15:10:57 -0500 |
commit | 4fbbfc2269d9671415efea2d946176abb83c5930 (patch) | |
tree | b005bf027887b54d3489ac3b2a8a57eb3b9f4454 /unotools/source | |
parent | c0765d1b5e317ec542be8285649c2c2a70892eff (diff) |
WoE: while (..) {} instead of while(..);
"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 <quikee@gmail.com>
Tested-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'unotools/source')
-rw-r--r-- | unotools/source/config/fontcfg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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 ) {} } } |