| 108 | } |
| 109 | |
| 110 | void Type::updateArrayInfoFromAST(const clang::QualType &QT) { |
| 111 | assert(PtrInfo && "Unexpected Program State"); |
| 112 | PtrInfo->updateArrayInfoFromAST(this, QT); |
| 113 | } |
| 114 | |
| 115 | Type::Type(Type::TypeID ID) : ID(ID) { |
| 116 | if (ID == TypeID_Pointer) |
no test coverage detected