Home
last modified time | relevance | path

Searched refs:DefaultCon (Results 1 – 1 of 1) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp13984 CXXConstructorDecl *DefaultCon = CXXConstructorDecl::Create( in DeclareImplicitDefaultConstructor() local
13991 DefaultCon->setAccess(AS_public); in DeclareImplicitDefaultConstructor()
13992 DefaultCon->setDefaulted(); in DeclareImplicitDefaultConstructor()
13998 DefaultCon, in DeclareImplicitDefaultConstructor()
14004 DefaultCon->setTrivial(ClassDecl->hasTrivialDefaultConstructor()); in DeclareImplicitDefaultConstructor()
14010 CheckImplicitSpecialMemberDeclaration(S, DefaultCon); in DeclareImplicitDefaultConstructor()
14012 if (ShouldDeleteSpecialMember(DefaultCon, CXXDefaultConstructor)) in DeclareImplicitDefaultConstructor()
14013 SetDeclDeleted(DefaultCon, ClassLoc); in DeclareImplicitDefaultConstructor()
14016 PushOnScopeChains(DefaultCon, S, false); in DeclareImplicitDefaultConstructor()
14017 ClassDecl->addDecl(DefaultCon); in DeclareImplicitDefaultConstructor()
[all …]