diff options
| author | Treeston <treeston.mmoc@gmail.com> | 2020-09-01 00:38:46 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2022-02-04 23:37:29 +0100 |
| commit | c4b287c7bfb2bb2dcb5efacf238e29413ebe77ec (patch) | |
| tree | 5a12a24a3a9fbe17f9bac3e6d3ab9f60c8201598 /src/common | |
| parent | f7e1b5338de02649fd43dc9c952b8d4b5feb20aa (diff) | |
Core/Misc: DBC std::array refactors, and |Hachievement unit tests
(cherry picked from commit 3fbbe7cfbe1bc51db12bdc1ec7b21c16d1716366)
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/Common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Common.h b/src/common/Common.h index 902b8cf6567..efbb181737b 100644 --- a/src/common/Common.h +++ b/src/common/Common.h @@ -139,7 +139,7 @@ struct LocalizedString return Str[locale]; } - char const* Str[TOTAL_LOCALES]; + std::array<char const*, TOTAL_LOCALES> Str; }; #pragma pack(pop) |
