fix trailing space after string in nested types

This commit is contained in:
Johannes Kapfhammer 2019-10-07 13:18:07 +02:00
parent e0b673e4e2
commit bbb14ef3df
1 changed files with 1 additions and 0 deletions

View File

@ -82,6 +82,7 @@ std::string sanitize_type(std::string s) {
f("__debug::", ""); f("__debug::", "");
f("__cxx11::", ""); f("__cxx11::", "");
f("basic_string<char> ", "string"); f("basic_string<char> ", "string");
f("basic_string<char>", "string");
f("long int", "int"); f("long int", "int");
return s; return s;
} }