File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ char const* const main_name_of_game_English = "Lix";
2121
2222// +1 because unlike other vectors, we'll have an element
2323// here for Language::MAX too
24- std::vector <std::string> language_name (Language:: MAX + 1 );
24+ std::vector <std::string> language_name (MAX + 1 );
2525
2626namespace Option {
2727 enum OptionGroupNames {
@@ -1575,8 +1575,8 @@ bool Language::try_load_custom_language(bool load_language_name_only) {
15751575namespace Language {
15761576 class KeyComparer {
15771577 public:
1578- inline bool operator ()(Language:: translate_map_type::const_iterator const & entry1,
1579- Language:: translate_map_type::const_iterator const & entry2) {
1578+ inline bool operator ()(translate_map_type::const_iterator const & entry1,
1579+ translate_map_type::const_iterator const & entry2) {
15801580 return entry1->first < entry2->first ;
15811581 }
15821582 };
You can’t perform that action at this time.
0 commit comments