More refactors to prepare for doc-search, including moving unicode support into ext.

This commit is contained in:
2026-01-14 12:30:44 -05:00
parent 4e374294b6
commit 850b4aa43b
10 changed files with 334 additions and 254 deletions

View File

@@ -8,6 +8,8 @@ namespace eng {
template<class C, class T=std::char_traits<C>>
using basic_string = std::basic_string<C, T, eng::allocator<C>>;
using string = basic_string<char>;
using u32string = basic_string<char32_t>;
using u16string = basic_string<char16_t>;
} // namespace eng
#endif // WRAP_STRING_HPP