diff options
Diffstat (limited to 'src/units.h')
-rw-r--r-- | src/units.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/units.h b/src/units.h index 67e027de..6aa07b70 100644 --- a/src/units.h +++ b/src/units.h @@ -35,12 +35,12 @@ class Units /** * Formats the given number in the correct currency format. */ - static std::string formatCurrency(const int value); + static std::string formatCurrency(int value); /** * Formats the given number in the correct weight/mass format. */ - static std::string formatWeight(const int value); + static std::string formatWeight(int value); }; #endif // UNITS_H |