File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -238,10 +238,10 @@ class UNICHARSET {
238
238
239
239
// Removes/replaces content that belongs in rendered text, but not in the
240
240
// unicharset.
241
- static string CleanupString (const char * utf8_str) {
241
+ static std:: string CleanupString (const char * utf8_str) {
242
242
return CleanupString (utf8_str, strlen (utf8_str));
243
243
}
244
- static string CleanupString (const char * utf8_str, int length);
244
+ static std:: string CleanupString (const char * utf8_str, int length);
245
245
246
246
// Return a STRING containing debug information on the unichar, including
247
247
// the id_to_unichar, its hex unicodes and the properties.
@@ -262,7 +262,7 @@ class UNICHARSET {
262
262
// Adds a unichar representation to the set. Avoids setting old_style to true,
263
263
// unless it is necessary to make the new unichar get added.
264
264
void unichar_insert_backwards_compatible (const char * const unichar_repr) {
265
- string cleaned = CleanupString (unichar_repr);
265
+ std:: string cleaned = CleanupString (unichar_repr);
266
266
if (cleaned != unichar_repr) {
267
267
unichar_insert (unichar_repr, OldUncleanUnichars::kTrue );
268
268
} else {
You can’t perform that action at this time.
0 commit comments