| 1461 | } |
| 1462 | |
| 1463 | bool DbgType::HasPointer(bool includeBfObjectPointer) |
| 1464 | { |
| 1465 | if (((mTypeCode == DbgType_Const) || (mTypeCode == DbgType_Ref)) && (mTypeParam != NULL)) |
| 1466 | return mTypeParam->IsPointer(includeBfObjectPointer); |
| 1467 | return IsPointer(includeBfObjectPointer); |
| 1468 | } |
| 1469 | |
| 1470 | bool DbgType::IsPointerOrRef(bool includeBfObjectPointer) |
| 1471 | { |
no test coverage detected