| 1580 | }; |
| 1581 | |
| 1582 | struct BfErrorEntry |
| 1583 | { |
| 1584 | public: |
| 1585 | BfErrorBase* mError; |
| 1586 | |
| 1587 | BfErrorEntry(BfErrorBase* error) |
| 1588 | { |
| 1589 | mError = error; |
| 1590 | } |
| 1591 | size_t GetHashCode() const; |
| 1592 | bool operator==(const BfErrorEntry& other) const; |
| 1593 | }; |
| 1594 | |
| 1595 | class BfPassInstance |
| 1596 | { |
no outgoing calls
no test coverage detected