[ox/std] Add BasicString<0> instantiation

This commit is contained in:
Gary Talent 2021-06-03 02:00:19 -05:00
parent 5a449cb40b
commit a9b5bfe438
2 changed files with 5 additions and 0 deletions

View File

@ -9,4 +9,7 @@
#include "string.hpp" #include "string.hpp"
namespace ox { namespace ox {
template class BasicString<0>;
} }

View File

@ -399,6 +399,8 @@ constexpr std::size_t BasicString<SmallStringSize>::len() const noexcept {
return length; return length;
} }
extern template class BasicString<0>;
using String = BasicString<0>; using String = BasicString<0>;
} }