diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-16 19:28:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-16 19:28:16 +0300 |
commit | cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96 (patch) | |
tree | fdda7e2c3d93b35771f6eb79c22dce9301082f19 /src/units.cpp | |
parent | f8fc3380197c078a6dcff02351d835c3022411e1 (diff) | |
download | plus-cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96.tar.gz plus-cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96.tar.bz2 plus-cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96.tar.xz plus-cd24ed1c6c5aab358b4f18d262bd4c00c0ebfe96.zip |
Add const to variables with type size_t.
Diffstat (limited to 'src/units.cpp')
-rw-r--r-- | src/units.cpp | 2 |
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); |