diff options
Diffstat (limited to 'clang/lib/Frontend/ChainedIncludesSource.cpp')
-rw-r--r-- | clang/lib/Frontend/ChainedIncludesSource.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang/lib/Frontend/ChainedIncludesSource.cpp b/clang/lib/Frontend/ChainedIncludesSource.cpp index 9694bc0..45cf672 100644 --- a/clang/lib/Frontend/ChainedIncludesSource.cpp +++ b/clang/lib/Frontend/ChainedIncludesSource.cpp @@ -231,9 +231,8 @@ void ChainedIncludesSource::InitializeSema(Sema &S) { void ChainedIncludesSource::ForgetSema() { return getFinalReader().ForgetSema(); } -std::pair<ObjCMethodList,ObjCMethodList> -ChainedIncludesSource::ReadMethodPool(Selector Sel) { - return getFinalReader().ReadMethodPool(Sel); +void ChainedIncludesSource::ReadMethodPool(Selector Sel) { + getFinalReader().ReadMethodPool(Sel); } bool ChainedIncludesSource::LookupUnqualified(LookupResult &R, Scope *S) { return getFinalReader().LookupUnqualified(R, S); |