[ox/claw] Fix writeClawHeader to move return value

This commit is contained in:
Gary Talent 2021-05-03 20:59:43 -04:00
parent 8f48042a29
commit af7dbd1aee

View File

@ -77,7 +77,7 @@ Result<String> writeClawHeader(T *t, ClawFormat fmt) noexcept {
out += tn;
}
out += ";";
return out;
return move(out);
}
}