diff options
| author | Douglas Gregor <dgregor@apple.com> | 2008-11-19 19:09:45 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2008-11-19 19:09:45 +0000 |
| commit | 7911b3711ddcb642308281c80cc3659fa669421c (patch) | |
| tree | bf4fe72a8826e4668b90076671dcc15620a50ee1 /clang/lib/Sema/Sema.h | |
| parent | bc47ed8e740fef260e0273c2cfd07fb6b18c7204 (diff) | |
| download | bcm5719-llvm-7911b3711ddcb642308281c80cc3659fa669421c.tar.gz bcm5719-llvm-7911b3711ddcb642308281c80cc3659fa669421c.zip | |
Some tweaks suggested by Argiris
llvm-svn: 59661
Diffstat (limited to 'clang/lib/Sema/Sema.h')
| -rw-r--r-- | clang/lib/Sema/Sema.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/clang/lib/Sema/Sema.h b/clang/lib/Sema/Sema.h index 983fa306d2b..85acc3eb8f9 100644 --- a/clang/lib/Sema/Sema.h +++ b/clang/lib/Sema/Sema.h @@ -612,16 +612,16 @@ public: IdentifierInfo &II, bool HasTrailingLParen, const CXXScopeSpec *SS = 0); - virtual ExprResult ActOnOperatorFunctionIdExpr(Scope *S, - SourceLocation OperatorLoc, - OverloadedOperatorKind Op, - bool HasTrailingLParen, - const CXXScopeSpec *SS = 0); - virtual ExprResult ActOnConversionFunctionExpr(Scope *S, - SourceLocation OperatorLoc, - TypeTy *Ty, - bool HasTrailingLParen, - const CXXScopeSpec *SS); + virtual ExprResult ActOnCXXOperatorFunctionIdExpr(Scope *S, + SourceLocation OperatorLoc, + OverloadedOperatorKind Op, + bool HasTrailingLParen, + const CXXScopeSpec &SS); + virtual ExprResult ActOnCXXConversionFunctionExpr(Scope *S, + SourceLocation OperatorLoc, + TypeTy *Ty, + bool HasTrailingLParen, + const CXXScopeSpec &SS); ExprResult ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc, DeclarationName Name, bool HasTrailingLParen, |

