1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-21 00:19:29 +02:00

Add "override" to virtual overriden methods

This commit is contained in:
Vadim Markovtsev
2015-10-12 16:47:10 +03:00
parent abe02247b5
commit e4b1ef1405
55 changed files with 433 additions and 433 deletions

View File

@ -159,7 +159,7 @@ void Unicode::trimRight(std::string & text, const size_t amount/* =1 */)
class LocaleWithComma: public std::numpunct<char>
{
protected:
char do_decimal_point() const
char do_decimal_point() const override
{
return ',';
}