Skip to content

Commit

Permalink
Explicit op<<(char16_t)
Browse files Browse the repository at this point in the history
  • Loading branch information
TinoDidriksen committed Jun 30, 2021
1 parent e9ef643 commit 69be62c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lttoolbox/ustring.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ UString to_ustring(const uint8_t* str);
void ustring_to_vec32(const UString& str, std::vector<int32_t>& vec);

inline std::ostream&
operator<<(std::ostream& ostr, UChar c)
operator<<(std::ostream& ostr, char16_t c)
{
ostr << std::hex << static_cast<uint16_t>(c);
return ostr;
Expand Down

0 comments on commit 69be62c

Please sign in to comment.