Browse Source

Fix typo in UTF conversion function declaration

master
C. J. Howard 2 years ago
parent
commit
984c8d11e9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/type/unicode/convert.hpp

+ 1
- 1
src/type/unicode/convert.hpp View File

@ -39,7 +39,7 @@ std::u32string u32(const std::string& u8);
* @param u32 UTF-32 string.
* @return UTF-8 string.
*/
std::string u32(const std::u32string& u32);
std::string u8(const std::u32string& u32);
} // namespace unicode
} // namespace type

Loading…
Cancel
Save