[ox/std] Switch String from Vector<char> to Buffer

This commit is contained in:
Gary Talent 2021-05-03 15:12:19 -04:00
parent c1418cdd6c
commit d20a24d10f
2 changed files with 3 additions and 1 deletions

View File

@ -8,6 +8,7 @@
#pragma once #pragma once
#include "error.hpp"
#include "vector.hpp" #include "vector.hpp"
namespace ox { namespace ox {

View File

@ -12,6 +12,7 @@
#include <string> #include <string>
#endif #endif
#include "buffer.hpp"
#include "memops.hpp" #include "memops.hpp"
#include "strops.hpp" #include "strops.hpp"
#include "typetraits.hpp" #include "typetraits.hpp"
@ -21,7 +22,7 @@ namespace ox {
class String { class String {
private: private:
Vector<char> m_buff; Buffer m_buff;
public: public:
String() noexcept; String() noexcept;