aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorTreeston <treeston.mmoc@gmail.com>2020-09-01 00:38:46 +0200
committerShauren <shauren.trinity@gmail.com>2022-02-04 23:37:29 +0100
commitc4b287c7bfb2bb2dcb5efacf238e29413ebe77ec (patch)
tree5a12a24a3a9fbe17f9bac3e6d3ab9f60c8201598 /src/common
parentf7e1b5338de02649fd43dc9c952b8d4b5feb20aa (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.h2
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)