Commit 3b7f9827 authored by Max Kellermann's avatar Max Kellermann

Util/IterableSplitString: add wchar_t specialization

parent f98bf390
......@@ -127,4 +127,11 @@ public:
using IterableSplitString = BasicIterableSplitString<char>;
#ifdef _UNICODE
using WIterableSplitString = BasicIterableSplitString<wchar_t>;
using TIterableSplitString = WIterableSplitString;
#else
using TIterableSplitString = IterableSplitString;
#endif
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment