From 5fd427314387d4199c1f0e86cf524a2cf91d7478 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Mon, 3 May 2021 20:59:43 -0400 Subject: [PATCH] [ox/claw] Fix writeClawHeader to move return value (synced from af7dbd1aeea76a7bc9ca6d2b9789deadde2ee0ad) --- src/ox/claw/write.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ox/claw/write.hpp b/src/ox/claw/write.hpp index 649bd0ad7..5630757d6 100644 --- a/src/ox/claw/write.hpp +++ b/src/ox/claw/write.hpp @@ -77,7 +77,7 @@ Result writeClawHeader(T *t, ClawFormat fmt) noexcept { out += tn; } out += ";"; - return out; + return move(out); } }