summaryrefslogtreecommitdiff
path: root/zen/string_tools.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/string_tools.h')
-rw-r--r--zen/string_tools.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zen/string_tools.h b/zen/string_tools.h
index 1b8595c7..35a07b64 100644
--- a/zen/string_tools.h
+++ b/zen/string_tools.h
@@ -560,9 +560,9 @@ Num extractInteger(const S& str, bool& hasMinusSign) //very fast conversion to i
}
Num number = 0;
- for (const CharType* iter = first; iter != last; ++iter)
+ for (const CharType* it = first; it != last; ++it)
{
- const CharType c = *iter;
+ const CharType c = *it;
if (static_cast<CharType>('0') <= c && c <= static_cast<CharType>('9'))
{
number *= 10;
bgstack15