More template keyword fixes.
This commit is contained in:
+2
-2
@@ -117,7 +117,7 @@ bool StringToInteger(const AString& a_str, T& a_Num)
|
||||
}
|
||||
if (positive)
|
||||
{
|
||||
for(size_t size = a_str.size(); i < size; i++)
|
||||
for (size_t size = a_str.size(); i < size; i++)
|
||||
{
|
||||
if ((a_str[i] <= '0') || (a_str[i] >= '9'))
|
||||
{
|
||||
@@ -138,7 +138,7 @@ bool StringToInteger(const AString& a_str, T& a_Num)
|
||||
}
|
||||
else
|
||||
{
|
||||
for(size_t size = a_str.size(); i < size; i++)
|
||||
for (size_t size = a_str.size(); i < size; i++)
|
||||
{
|
||||
if ((a_str[i] <= '0') || (a_str[i] >= '9'))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user