summaryrefslogtreecommitdiffstats
path: root/src/StringUtils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/StringUtils.h')
-rw-r--r--src/StringUtils.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/StringUtils.h b/src/StringUtils.h
index 4a4c267c7..72a90a8c2 100644
--- a/src/StringUtils.h
+++ b/src/StringUtils.h
@@ -101,7 +101,7 @@ extern void SetBEInt(char * a_Mem, Int32 a_Value);
/// Parses any integer type. Checks bounds and returns errors out of band.
template <class T>
-bool StringToInteger(const AString& a_str, T& a_Num)
+bool StringToInteger(const AString & a_str, T & a_Num)
{
size_t i = 0;
bool positive = true;
@@ -119,7 +119,7 @@ bool StringToInteger(const AString& a_str, T& a_Num)
{
for (size_t size = a_str.size(); i < size; i++)
{
- if ((a_str[i] <= '0') || (a_str[i] >= '9'))
+ if ((a_str[i] < '0') || (a_str[i] > '9'))
{
return false;
}
@@ -140,7 +140,7 @@ bool StringToInteger(const AString& a_str, T& a_Num)
{
for (size_t size = a_str.size(); i < size; i++)
{
- if ((a_str[i] <= '0') || (a_str[i] >= '9'))
+ if ((a_str[i] < '0') || (a_str[i] > '9'))
{
return false;
}