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:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user