util/AllocatedString: implement AllocatedString<wchar_t>::Duplicate()
This commit is contained in:
parent
6e2b348758
commit
70ac4fa96b
@ -36,3 +36,14 @@ AllocatedString<char>::Duplicate(const_pointer_type src)
|
|||||||
{
|
{
|
||||||
return Duplicate(src, StringLength(src));
|
return Duplicate(src, StringLength(src));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef _UNICODE
|
||||||
|
|
||||||
|
template<>
|
||||||
|
AllocatedString<wchar_t>
|
||||||
|
AllocatedString<wchar_t>::Duplicate(const_pointer_type src)
|
||||||
|
{
|
||||||
|
return Duplicate(src, StringLength(src));
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user