mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-20 14:23:53 +00:00
Merge branch 'fix_reserved_nodes' into 'master'
Add missing non-prefixed reserved nodes See merge request OpenMW/openmw!2414 (cherry picked from commitcd8b20439e
)ac01fd5e
Add missing non-prefixed reserved nodes
This commit is contained in:
parent
9bed210e4e
commit
847e2bbeaf
1 changed files with 2 additions and 1 deletions
|
@ -665,10 +665,11 @@ namespace Resource
|
|||
};
|
||||
|
||||
std::vector<std::string> result;
|
||||
result.reserve(std::size(names));
|
||||
result.reserve(2 * std::size(names));
|
||||
|
||||
for (std::string_view name : names)
|
||||
{
|
||||
result.emplace_back(name);
|
||||
std::string prefixedName("Tri ");
|
||||
prefixedName += name;
|
||||
result.push_back(std::move(prefixedName));
|
||||
|
|
Loading…
Reference in a new issue