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.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/zen/string_tools.h b/zen/string_tools.h
index 1dd5905d..a0b02d14 100644
--- a/zen/string_tools.h
+++ b/zen/string_tools.h
@@ -65,20 +65,6 @@ template <class T, class S> T copyStringTo(const S& str);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
//---------------------- implementation ----------------------
template <> inline
bool isWhiteSpace(char ch)
@@ -584,7 +570,7 @@ Num extractInteger(const S& str, bool& hasMinusSign) //very fast conversion to i
}
else
{
- //rest of string should contain whitespace only, it's NOT a bug if there is some!
+ //rest of string should contain whitespace only, it's NOT a bug if there is something else!
//assert(std::all_of(iter, last, &isWhiteSpace<CharType>)); -> this is NO assert situation
break;
}
bgstack15