| 141 | } |
| 142 | |
| 143 | void BfGNUMangler::FindOrCreateNameSub(MangleContext& mangleContext, StringImpl& name, const NameSubstitute& newNameSub) |
| 144 | { |
| 145 | int curMatchIdx = -1; |
| 146 | bool matchFailed = false; |
| 147 | FindOrCreateNameSub(mangleContext, name, newNameSub, curMatchIdx, matchFailed); |
| 148 | if (!matchFailed) |
| 149 | AddSubIdx(name, curMatchIdx); |
| 150 | } |
| 151 | |
| 152 | void BfGNUMangler::FindOrCreateNameSub(MangleContext& mangleContext, StringImpl& name, const NameSubstitute& newNameSub, int& curMatchIdx, bool& matchFailed) |
| 153 | { |
nothing calls this directly
no test coverage detected