[ox/claw] Fix writeClawHeader to move return value

(synced from af7dbd1aee)
This commit is contained in:
2021-05-03 20:59:43 -04:00
parent c8fe5c427a
commit 5fd4273143
+1 -1
View File
@@ -77,7 +77,7 @@ Result<String> writeClawHeader(T *t, ClawFormat fmt) noexcept {
out += tn;
}
out += ";";
return out;
return move(out);
}
}