From 4322f720ba61227731a90e976be74ae3fdd8e1a8 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 24 May 2025 00:47:39 -0500 Subject: [PATCH] [keel] Fix ox::Result convert(Context &ctx, ox::BufferView const&src) --- src/olympic/keel/include/keel/typeconv.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/olympic/keel/include/keel/typeconv.hpp b/src/olympic/keel/include/keel/typeconv.hpp index e3aafd7c..f5e0d688 100644 --- a/src/olympic/keel/include/keel/typeconv.hpp +++ b/src/olympic/keel/include/keel/typeconv.hpp @@ -260,7 +260,7 @@ ox::Result convertObjToObj( template ox::Result convert(Context &ctx, ox::BufferView const&src) noexcept { OX_REQUIRE(out, convert(ctx, src, ox::ModelTypeName_v, ox::ModelTypeVersion_v)); - return std::move(wrapCast(out)); + return std::move(wrapCast(*out)); } template