diff --git a/deps/ox/src/ox/std/fmt.hpp b/deps/ox/src/ox/std/fmt.hpp index 3bc60fb1..c106d270 100644 --- a/deps/ox/src/ox/std/fmt.hpp +++ b/deps/ox/src/ox/std/fmt.hpp @@ -207,7 +207,7 @@ constexpr Result join(auto d, const auto &list) { return T(""); } T out; - out += list.front().value; + out += list[0]; for (auto i = 1ul; i < list.size(); ++i) { out += d; out += list[i];