1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 23:04:36 +01:00

Address clang 6.0 compilation errors.

This commit is contained in:
Aaron van Geffen
2018-05-13 23:22:40 +02:00
parent 4e86d18dad
commit 8c3766288b
3 changed files with 5 additions and 5 deletions

View File

@@ -426,11 +426,11 @@ namespace ObjectJsonHelpers
if (json_is_string(el))
{
auto s = json_string_value(el);
images = std::move(ParseImages(context, s));
images = ParseImages(context, s);
}
else if (json_is_object(el))
{
images = std::move(ParseImages(context, el));
images = ParseImages(context, el);
}
for (const auto &g1 : images)
{