Skip to content

Commit 69be62c

Browse files
committed
Explicit op<<(char16_t)
1 parent e9ef643 commit 69be62c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lttoolbox/ustring.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ UString to_ustring(const uint8_t* str);
3636
void ustring_to_vec32(const UString& str, std::vector<int32_t>& vec);
3737

3838
inline std::ostream&
39-
operator<<(std::ostream& ostr, UChar c)
39+
operator<<(std::ostream& ostr, char16_t c)
4040
{
4141
ostr << std::hex << static_cast<uint16_t>(c);
4242
return ostr;

0 commit comments

Comments
 (0)