diff --git a/deps/ox/src/ox/std/buffer.hpp b/deps/ox/src/ox/std/buffer.hpp index 9462457a..ef32e2f4 100644 --- a/deps/ox/src/ox/std/buffer.hpp +++ b/deps/ox/src/ox/std/buffer.hpp @@ -8,6 +8,7 @@ #pragma once +#include "error.hpp" #include "vector.hpp" namespace ox { diff --git a/deps/ox/src/ox/std/string.hpp b/deps/ox/src/ox/std/string.hpp index d551bcf6..19a92c64 100644 --- a/deps/ox/src/ox/std/string.hpp +++ b/deps/ox/src/ox/std/string.hpp @@ -12,6 +12,7 @@ #include #endif +#include "buffer.hpp" #include "memops.hpp" #include "strops.hpp" #include "typetraits.hpp" @@ -21,7 +22,7 @@ namespace ox { class String { private: - Vector m_buff; + Buffer m_buff; public: String() noexcept;