diff options
| author | Douglas Gregor <dgregor@apple.com> | 2010-04-22 17:01:48 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2010-04-22 17:01:48 +0000 |
| commit | b5186b1d4454adc908e9a9a3ddc7b368c9049885 (patch) | |
| tree | 5b1f5de5638be8debc6d59e5d89716e46865635d /clang/lib/Sema/Sema.h | |
| parent | 049211a670dffac0d5a87ef36fdc2e0ae73fb804 (diff) | |
| download | bcm5719-llvm-b5186b1d4454adc908e9a9a3ddc7b368c9049885.tar.gz bcm5719-llvm-b5186b1d4454adc908e9a9a3ddc7b368c9049885.zip | |
When a dependent Objective-C++ message send was able to resolve the
method being called at template definition time, retain that method
and pass it through to type-checking. We will not perform any lookup
for the method during template instantiation.
llvm-svn: 102081
Diffstat (limited to 'clang/lib/Sema/Sema.h')
| -rw-r--r-- | clang/lib/Sema/Sema.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/Sema/Sema.h b/clang/lib/Sema/Sema.h index 39351bb284f..6b8aca9ccd3 100644 --- a/clang/lib/Sema/Sema.h +++ b/clang/lib/Sema/Sema.h @@ -3886,6 +3886,7 @@ public: QualType ReceiverType, SourceLocation SuperLoc, Selector Sel, + ObjCMethodDecl *Method, SourceLocation LBracLoc, SourceLocation RBracLoc, MultiExprArg Args); @@ -3902,6 +3903,7 @@ public: QualType ReceiverType, SourceLocation SuperLoc, Selector Sel, + ObjCMethodDecl *Method, SourceLocation LBracLoc, SourceLocation RBracLoc, MultiExprArg Args); |

