summaryrefslogtreecommitdiffstats
path: root/src/StringUtils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/StringUtils.h')
-rw-r--r--src/StringUtils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/StringUtils.h b/src/StringUtils.h
index a63d852ee..4a4c267c7 100644
--- a/src/StringUtils.h
+++ b/src/StringUtils.h
@@ -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'))
{