forked from OSchip/llvm-project
Fix ExpandedSpecialSubstitution demangling for Sa and Sb.
No functionality change: we never actually create these forms currently. llvm-svn: 340665
This commit is contained in:
parent
55857c5bed
commit
3aca4811c8
|
@ -1284,10 +1284,11 @@ public:
|
|||
void printLeft(OutputStream &S) const override {
|
||||
switch (SSK) {
|
||||
case SpecialSubKind::allocator:
|
||||
S += "std::basic_string<char, std::char_traits<char>, "
|
||||
"std::allocator<char> >";
|
||||
S += "std::allocator";
|
||||
break;
|
||||
case SpecialSubKind::basic_string:
|
||||
S += "std::basic_string";
|
||||
break;
|
||||
case SpecialSubKind::string:
|
||||
S += "std::basic_string<char, std::char_traits<char>, "
|
||||
"std::allocator<char> >";
|
||||
|
|
Loading…
Reference in New Issue