diff options
| author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-11-08 16:45:02 +0000 | 
|---|---|---|
| committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-11-08 16:45:02 +0000 | 
| commit | 32a0379575315dcc270f9c7099b052dbb7aa7a0d (patch) | |
| tree | 545dea10a5d2b337f5ad9cc7b301c125cf424751 /clang/lib/Sema/SemaDeclCXX.cpp | |
| parent | c7e67a04c396ff684b5f4478b02f9959ac38635d (diff) | |
| download | bcm5719-llvm-32a0379575315dcc270f9c7099b052dbb7aa7a0d.tar.gz bcm5719-llvm-32a0379575315dcc270f9c7099b052dbb7aa7a0d.zip | |
Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parser side.
No Sema functionality change, just the signatures of the Action/Sema methods.
llvm-svn: 58913
Diffstat (limited to 'clang/lib/Sema/SemaDeclCXX.cpp')
| -rw-r--r-- | clang/lib/Sema/SemaDeclCXX.cpp | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/clang/lib/Sema/SemaDeclCXX.cpp b/clang/lib/Sema/SemaDeclCXX.cpp index fe7efbae5f8..2ac5804d1e6 100644 --- a/clang/lib/Sema/SemaDeclCXX.cpp +++ b/clang/lib/Sema/SemaDeclCXX.cpp @@ -262,7 +262,8 @@ void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {  /// name of the class type currently being defined. In the case of  /// nested classes, this will only return true if II is the name of  /// the innermost class. -bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *) { +bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *, +                              const CXXScopeSpec *SS) {    if (CXXRecordDecl *CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext))      return &II == CurDecl->getIdentifier();    else @@ -614,7 +615,7 @@ Sema::ActOnMemInitializer(DeclTy *ConstructorD,    }    // It didn't name a member, so see if it names a class. -  TypeTy *BaseTy = isTypeName(*MemberOrBase, S); +  TypeTy *BaseTy = isTypeName(*MemberOrBase, S, 0/*SS*/);    if (!BaseTy)      return Diag(IdLoc, diag::err_mem_init_not_member_or_class,                  MemberOrBase->getName(), SourceRange(IdLoc, RParenLoc)); | 

