| 1143 | } |
| 1144 | |
| 1145 | void BfMSMangler::AddStr(MangleContext& mangleContext, StringImpl& name, const StringImpl& str) |
| 1146 | { |
| 1147 | if ((int)mangleContext.mSubstituteList.size() < 10) |
| 1148 | { |
| 1149 | // Add NULL entry... shouldn't match anything |
| 1150 | mangleContext.mSubstituteList.push_back(NameSubstitute(NameSubstitute::Kind_None, NULL)); |
| 1151 | } |
| 1152 | |
| 1153 | name += str; |
| 1154 | name += '@'; |
| 1155 | } |
| 1156 | |
| 1157 | void BfMSMangler::AddSubIdx(StringImpl& name, int strIdx) |
| 1158 | { |
no test coverage detected