diff options
author | Henry Wilson <m3henry@googlemail.com> | 2019-03-04 20:49:33 +0000 |
---|---|---|
committer | PeterN <peter@fuzzle.org> | 2019-03-26 20:15:57 +0000 |
commit | cc62f4163f230ed82ef3b04187987d3e380cd570 (patch) | |
tree | c4e271f72ae231d9934f215624054d605665ca6c /src/game | |
parent | c01a2e2a81d8e7bcd47d46292ed0b7d452081c31 (diff) | |
download | openttd-cc62f4163f230ed82ef3b04187987d3e380cd570.tar.xz |
Cleanup: Remove unused size template parameters from SmallMap and Auto[Free|Delete]SmallVector
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/game_text.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/game_text.hpp b/src/game/game_text.hpp index 14da7d9b2..11c63b5ab 100644 --- a/src/game/game_text.hpp +++ b/src/game/game_text.hpp @@ -32,9 +32,9 @@ struct GameStrings { uint version; ///< The version of the language strings. LanguageStrings *cur_language; ///< The current (compiled) language. - AutoDeleteSmallVector<LanguageStrings *, 4> raw_strings; ///< The raw strings per language, first must be English/the master language!. - AutoDeleteSmallVector<LanguageStrings *, 4> compiled_strings; ///< The compiled strings per language, first must be English/the master language!. - StringList string_names; ///< The names of the compiled strings. + AutoDeleteSmallVector<LanguageStrings *> raw_strings; ///< The raw strings per language, first must be English/the master language!. + AutoDeleteSmallVector<LanguageStrings *> compiled_strings; ///< The compiled strings per language, first must be English/the master language!. + StringList string_names; ///< The names of the compiled strings. void Compile(); }; |