diff options
Diffstat (limited to 'clang/lib/Sema/DeclSpec.cpp')
-rw-r--r-- | clang/lib/Sema/DeclSpec.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/clang/lib/Sema/DeclSpec.cpp b/clang/lib/Sema/DeclSpec.cpp index d5c8871cac8..5c75536e94a 100644 --- a/clang/lib/Sema/DeclSpec.cpp +++ b/clang/lib/Sema/DeclSpec.cpp @@ -893,6 +893,7 @@ bool DeclSpec::SetConstexprSpec(SourceLocation Loc, const char *&PrevSpec, return false; } + bool DeclSpec::SetConceptSpec(SourceLocation Loc, const char *&PrevSpec, unsigned &DiagID) { if (Concept_specified) { @@ -905,6 +906,16 @@ bool DeclSpec::SetConceptSpec(SourceLocation Loc, const char *&PrevSpec, return false; } +void DeclSpec::setObjCTypeArgs(SourceLocation lAngleLoc, + ArrayRef<ParsedType> args, + SourceLocation rAngleLoc) { + ParsedType *argsCopy = new ParsedType[args.size()]; + memcpy(argsCopy, args.data(), args.size() * sizeof(ParsedType)); + ObjCTypeArgs = llvm::makeArrayRef(argsCopy, args.size()); + ObjCTypeArgsLAngleLoc = lAngleLoc; + ObjCTypeArgsRAngleLoc = rAngleLoc; +} + void DeclSpec::setProtocolQualifiers(Decl * const *Protos, unsigned NP, SourceLocation *ProtoLocs, |