diff --git a/deps/ox/src/ox/std/fmt.hpp b/deps/ox/src/ox/std/fmt.hpp index 754e35d3..d2ac76ee 100644 --- a/deps/ox/src/ox/std/fmt.hpp +++ b/deps/ox/src/ox/std/fmt.hpp @@ -17,6 +17,7 @@ #endif #include "assert.hpp" +#include "error.hpp" #include "bstring.hpp" #include "string.hpp" #include "strops.hpp" @@ -180,7 +181,7 @@ StringType sfmt(const char *fmt, Args... args) noexcept { const auto &s = fmtSegments.segments[i + 1]; oxIgnoreError(out.append(s.str, s.length)); } - return move(out); + return out; } }