| 1452 | } |
| 1453 | |
| 1454 | bool DbgType::IsPointer(bool includeBfObjectPointer) |
| 1455 | { |
| 1456 | if (mTypeCode != DbgType_Ptr) |
| 1457 | return false; |
| 1458 | if ((!includeBfObjectPointer) && (mTypeParam != NULL) && (mTypeParam->IsBfObject())) |
| 1459 | return false; |
| 1460 | return true; |
| 1461 | } |
| 1462 | |
| 1463 | bool DbgType::HasPointer(bool includeBfObjectPointer) |
| 1464 | { |
no test coverage detected