[ox/claw] MSVC fix

(synced from c9f1b3aaa3)
This commit is contained in:
2022-12-18 23:27:59 -06:00
parent 50f11bf97a
commit 9a826a7024
+1 -1
View File
@@ -74,7 +74,7 @@ Result<Buffer> stripClawHeader(const ox::Buffer &buff) noexcept {
Result<ModelObject> readClaw(TypeStore *ts, const Buffer &buff) noexcept {
oxRequire(header, readClawHeader(buff));
oxRequire(t, ts->template getLoad(header.typeName, header.typeVersion, header.typeParams));
oxRequire(t, ts->getLoad(header.typeName, header.typeVersion, header.typeParams));
ModelObject obj;
oxReturnError(obj.setType(t));
switch (header.fmt) {