diff options
Diffstat (limited to 'lib/Sema/SemaLookup.cpp')
-rw-r--r-- | lib/Sema/SemaLookup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaLookup.cpp b/lib/Sema/SemaLookup.cpp index 89425238e7..8fe287cb41 100644 --- a/lib/Sema/SemaLookup.cpp +++ b/lib/Sema/SemaLookup.cpp @@ -713,7 +713,7 @@ Sema::CppLookupName(Scope *S, DeclarationName Name, AddScopeUsingDirectives(Context, SC, UDirs); // Sort heapified UsingDirectiveDecls. - std::sort_heap(UDirs.begin(), UDirs.end()); + std::sort_heap(UDirs.begin(), UDirs.end(), UsingDirAncestorCompare()); // Lookup namespace scope, and global scope. // Unqualified name lookup in C++ requires looking into scopes |