diff options
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; |