mirror of
https://git.mirrors.martin98.com/https://github.com/gulrak/filesystem
synced 2025-08-12 19:39:07 +08:00
refs #18, added missing allocator parameter to std::string case of fromUtf8
This commit is contained in:
parent
40ef125494
commit
6d173c50a9
@ -1211,7 +1211,7 @@ namespace detail {
|
|||||||
template <class StringType, typename std::enable_if<(sizeof(typename StringType::value_type) == 1)>::type* = nullptr>
|
template <class StringType, typename std::enable_if<(sizeof(typename StringType::value_type) == 1)>::type* = nullptr>
|
||||||
inline StringType fromUtf8(const std::string& utf8String, const typename StringType::allocator_type& alloc = typename StringType::allocator_type())
|
inline StringType fromUtf8(const std::string& utf8String, const typename StringType::allocator_type& alloc = typename StringType::allocator_type())
|
||||||
{
|
{
|
||||||
return StringType(utf8String.begin(), utf8String.end());
|
return StringType(utf8String.begin(), utf8String.end(), alloc);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class StringType, typename std::enable_if<(sizeof(typename StringType::value_type) == 2)>::type* = nullptr>
|
template <class StringType, typename std::enable_if<(sizeof(typename StringType::value_type) == 2)>::type* = nullptr>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user