summaryrefslogtreecommitdiffstats
path: root/src/utils/string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/string.cpp')
-rw-r--r--src/utils/string.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/string.cpp b/src/utils/string.cpp
index b74b91e..fdc5eb5 100644
--- a/src/utils/string.cpp
+++ b/src/utils/string.cpp
@@ -40,7 +40,7 @@ std::string toLower(std::string s)
bool isNumeric(const std::string &s)
{
- for (unsigned int i = 0; i < s.size(); ++i)
+ for (unsigned i = 0; i < s.size(); ++i)
{
if (!isdigit(s[i]))
{