reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
2189 if (AllocType->isFunctionType()) 2191 << AllocType << 0 << R; 2192 else if (AllocType->isReferenceType()) 2194 << AllocType << 1 << R; 2195 else if (!AllocType->isDependentType() && 2196 RequireCompleteType(Loc, AllocType, diag::err_new_incomplete_type,R)) 2198 else if (RequireNonAbstractType(Loc, AllocType, 2201 else if (AllocType->isVariablyModifiedType()) 2203 << AllocType; 2204 else if (AllocType.getAddressSpace() != LangAS::Default && 2207 << AllocType.getUnqualifiedType() 2208 << AllocType.getQualifiers().getAddressSpaceAttributePrintValue(); 2210 if (const ArrayType *AT = Context.getAsArrayType(AllocType)) {