| 1255 | } |
| 1256 | |
| 1257 | void BfPassInstance::ClearErrors() |
| 1258 | { |
| 1259 | mFailedIdx = 0; |
| 1260 | for (auto bfError : mErrors) |
| 1261 | delete bfError; |
| 1262 | mErrors.Clear(); |
| 1263 | mOutStream.Clear(); |
| 1264 | mLastWasDisplayed = false; |
| 1265 | mLastWasAdded = false; |
| 1266 | mIgnoreCount = 0; |
| 1267 | mWarningCount = 0; |
| 1268 | mDeferredErrorCount = 0; |
| 1269 | } |
| 1270 | |
| 1271 | bool BfPassInstance::HasFailed() |
| 1272 | { |
no test coverage detected