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 e40c1aa6f..0665bf992 100644 --- a/src/units.h +++ b/src/units.h @@ -40,12 +40,12 @@ class Units final /** * Formats the given number in the correct currency format. */ - static std::string formatCurrency(const int value); + static std::string formatCurrency(const int value) A_WARN_UNUSED; /** * Formats the given number in the correct weight/mass format. */ - static std::string formatWeight(const int value); + static std::string formatWeight(const int value) A_WARN_UNUSED; }; #endif // UNITS_H |