[ox/std] Add BasicString<0> instantiation
This commit is contained in:
parent
5a449cb40b
commit
a9b5bfe438
3
deps/ox/src/ox/std/string.cpp
vendored
3
deps/ox/src/ox/std/string.cpp
vendored
@ -9,4 +9,7 @@
|
|||||||
#include "string.hpp"
|
#include "string.hpp"
|
||||||
|
|
||||||
namespace ox {
|
namespace ox {
|
||||||
|
|
||||||
|
template class BasicString<0>;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
2
deps/ox/src/ox/std/string.hpp
vendored
2
deps/ox/src/ox/std/string.hpp
vendored
@ -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>;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user