From 366e0b120624cb382fd3b233b8ec7a75c31a2da4 Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Tue, 17 Feb 2009 20:33:28 +0100 Subject: Got rid of const where it does not make much sense It's not that useful to make variables that are passed by value const. In the declaration it is even completely ignored. --- src/units.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/units.cpp') diff --git a/src/units.cpp b/src/units.cpp index 3c02fb05..f4bc01b7 100644 --- a/src/units.cpp +++ b/src/units.cpp @@ -159,7 +159,7 @@ void Units::loadUnits() } } -std::string formatUnit(const int value, const int type) +std::string formatUnit(int value, int type) { struct UnitDescription ud = units[type]; struct UnitLevel ul; @@ -222,12 +222,12 @@ std::string formatUnit(const int value, const int type) } } -std::string Units::formatCurrency(const int value) +std::string Units::formatCurrency(int value) { return formatUnit(value, UNIT_CURRENCY); } -std::string Units::formatWeight(const int value) +std::string Units::formatWeight(int value) { return formatUnit(value, UNIT_WEIGHT); } -- cgit v1.2.3-70-g09d2