[ox/std] Add Error return value to {,B}String::append

This commit is contained in:
2021-05-07 16:04:08 -05:00
parent 800e04b3b9
commit 9a31e898d0
6 changed files with 31 additions and 20 deletions

View File

@ -28,7 +28,7 @@ class Vector {
T *m_items = nullptr;
public:
Vector() noexcept = default;
constexpr Vector() noexcept = default;
explicit Vector(std::size_t size) noexcept;