[jak2] try to speed up compile a bit (#2596)

This commit is contained in:
water111
2023-04-30 14:13:52 -04:00
committed by GitHub
parent cb1daa032c
commit 5c9aa3facd
7 changed files with 378 additions and 261 deletions
+1 -1
View File
@@ -204,7 +204,7 @@ Object build_list(std::vector<Object>&& objects) {
Object result;
result.type = ObjectType::PAIR;
result.heap_obj = head;
result.heap_obj = std::move(head);
return result;
}