[ox/claw] Cleanup

This commit is contained in:
Gary Talent 2021-05-03 11:42:05 -04:00
parent 8f53dda1e2
commit e2e62a235a

View File

@ -61,7 +61,7 @@ template<typename T>
Result<T> readClaw(const char *buff, std::size_t buffLen) { Result<T> readClaw(const char *buff, std::size_t buffLen) {
T val; T val;
oxReturnError(readClaw(buff, buffLen, &val)); oxReturnError(readClaw(buff, buffLen, &val));
return ox::move(val); return move(val);
} }
template<typename T> template<typename T>