diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 19:56:28 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:24:39 +0100 |
commit | 1b574435a591695fac694f7129631312b05ef06e (patch) | |
tree | b4a454abbcd720b30739ad7cffe34aa85dfab433 /include/comphelper | |
parent | 0b4e1c940215aa40618026e06723c6e6600b35e2 (diff) |
bool improvements
Change-Id: I17c451d33d6d5e4edf0304ff47d63ac878d7e5d9
Diffstat (limited to 'include/comphelper')
-rw-r--r-- | include/comphelper/string.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/comphelper/string.hxx b/include/comphelper/string.hxx index 0363d4b743c0..181ca8b92a6e 100644 --- a/include/comphelper/string.hxx +++ b/include/comphelper/string.hxx @@ -96,7 +96,7 @@ inline OUStringBuffer& remove(OUStringBuffer &rIn, sal_Unicode c) { sal_Int32 index = 0; - while (1) + while (true) { if (index >= rIn.getLength()) break; |