Reported in https://www.viva64.com/en/b/0629/
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@359478
91177308-0d34-0410-b5e6-
96231b3b80d8
Result += "(tlv) ";
switch (Kind) {
case SymbolKind::GlobalSymbol:
- Result + Name.str();
+ Result += Name.str();
break;
case SymbolKind::ObjectiveCClass:
- Result + "(ObjC Class) " + Name.str();
+ Result += "(ObjC Class) " + Name.str();
break;
case SymbolKind::ObjectiveCClassEHType:
- Result + "(ObjC Class EH) " + Name.str();
+ Result += "(ObjC Class EH) " + Name.str();
break;
case SymbolKind::ObjectiveCInstanceVariable:
- Result + "(ObjC IVar) " + Name.str();
+ Result += "(ObjC IVar) " + Name.str();
break;
}
OS << Result;