mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-03 09:06:40 +00:00
const the key/value
This commit is contained in:
parent
db3f9da08a
commit
7fe6c39aa2
1 changed files with 2 additions and 2 deletions
|
@ -73,8 +73,8 @@ namespace l10n
|
||||||
std::string localeName = lang.getName();
|
std::string localeName = lang.getName();
|
||||||
for (const auto& it: data)
|
for (const auto& it: data)
|
||||||
{
|
{
|
||||||
auto key = it.first.as<std::string>();
|
const auto key = it.first.as<std::string>();
|
||||||
auto value = it.second.as<std::string>();
|
const auto value = it.second.as<std::string>();
|
||||||
icu::UnicodeString pattern = icu::UnicodeString::fromUTF8(value);
|
icu::UnicodeString pattern = icu::UnicodeString::fromUTF8(value);
|
||||||
icu::ErrorCode status;
|
icu::ErrorCode status;
|
||||||
UParseError parseError;
|
UParseError parseError;
|
||||||
|
|
Loading…
Reference in a new issue