summaryrefslogtreecommitdiff
path: root/src/units.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/units.cpp')
-rw-r--r--src/units.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/units.cpp b/src/units.cpp
index 52093c057..3a2a5dace 100644
--- a/src/units.cpp
+++ b/src/units.cpp
@@ -265,7 +265,7 @@ std::string Units::formatWeight(const int value)
static std::string splitNumber(std::string str, const std::string &separator)
{
std::string lastPart;
- size_t point = str.find(".");
+ const size_t point = str.find(".");
if (point != std::string::npos)
{
lastPart = str.substr(point);