| 1736 | } |
| 1737 | |
| 1738 | BeDbgType* FindDerivedType(int typeId) |
| 1739 | { |
| 1740 | for (auto derivedType : mDerivedTypes) |
| 1741 | { |
| 1742 | if (derivedType->GetTypeId() == typeId) |
| 1743 | return derivedType; |
| 1744 | } |
| 1745 | return NULL; |
| 1746 | } |
| 1747 | |
| 1748 | virtual void HashContent(BeHashContext& hashCtx) override |
| 1749 | { |
no test coverage detected