[ox/std] Add BasicString<0> instantiation

(synced from a9b5bfe438)
This commit is contained in:
2021-06-03 02:00:19 -05:00
parent 111f189b82
commit d17a96ca80
2 changed files with 5 additions and 0 deletions
+3
View File
@@ -9,4 +9,7 @@
#include "string.hpp"
namespace ox {
template class BasicString<0>;
}
+2
View File
@@ -399,6 +399,8 @@ constexpr std::size_t BasicString<SmallStringSize>::len() const noexcept {
return length;
}
extern template class BasicString<0>;
using String = BasicString<0>;
}