More template keyword fixes.

This commit is contained in:
Mattes D
2014-08-28 16:58:48 +03:00
parent 52a6b30f32
commit 271c8c0d32
5 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -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'))
{