Skip to content

Commit

Permalink
Fixed unqualified class "string" (#1082)
Browse files Browse the repository at this point in the history
  • Loading branch information
fifothekid authored and zdenop committed Feb 28, 2018
1 parent 40f4311 commit ad6f3b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ccutil/unichar.h
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class UNICHAR {
static std::vector<char32> UTF8ToUTF32(const char* utf8_str);
// Converts a vector of unicodes to a utf8 string.
// Returns an empty string if the input contains an invalid unicode.
static string UTF32ToUTF8(const std::vector<char32>& str32);
static std::string UTF32ToUTF8(const std::vector<char32>& str32);

private:
// A UTF-8 representation of 1 or more Unicode characters.
Expand Down

0 comments on commit ad6f3b4

Please sign in to comment.