summaryrefslogtreecommitdiffstats
path: root/include/clang/module.modulemap
diff options
context:
space:
mode:
authorAlex Lorenz <arphaman@gmail.com>2017-07-13 10:36:33 +0000
committerAlex Lorenz <arphaman@gmail.com>2017-07-13 10:36:33 +0000
commitffd70202d375d7ff98509a2ecd3c8318dd692fc9 (patch)
tree21b6d3dc3b86522ae39d5ccc66c25ccbab08609a /include/clang/module.modulemap
parentf37177d01fdd617c15879c8a9c0d94de0528996d (diff)
[refactor][rename] Use a single base class for class that finds
a declaration at location and for class that searches for all occurrences of a specific declaration This commit uses a single RecursiveSymbolVisitor class for both USRLocFindingASTVisitor and NamedDeclOccurrenceFindingVisitor to avoid duplicate traversal code. It also traverses nested name specifier locs in the new class and remove the separate matching step. Differential Revision: https://reviews.llvm.org/D34949 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@307898 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/module.modulemap')
-rw-r--r--include/clang/module.modulemap1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/clang/module.modulemap b/include/clang/module.modulemap
index f7e338d933..d850bd552e 100644
--- a/include/clang/module.modulemap
+++ b/include/clang/module.modulemap
@@ -138,5 +138,4 @@ module Clang_Tooling {
// importing the AST matchers library gives a link dependency on the AST
// matchers (and thus the AST), which clang-format should not have.
exclude header "Tooling/RefactoringCallbacks.h"
- exclude header "Tooling/Refactoring/Rename/USRFinder.h"
}