diff options
| author | Nuno Lopes <nunoplopes@sapo.pt> | 2014-03-23 17:12:37 +0000 |
|---|---|---|
| committer | Nuno Lopes <nunoplopes@sapo.pt> | 2014-03-23 17:12:37 +0000 |
| commit | fb744589bc493855e6777ba16637ae9164d60da1 (patch) | |
| tree | 92d890ec5d20e618cb66159dd37ac03fabe54615 /clang/lib/Index | |
| parent | 31617266eae462d4a166db0db5aba8dd789981d4 (diff) | |
| download | bcm5719-llvm-fb744589bc493855e6777ba16637ae9164d60da1.tar.gz bcm5719-llvm-fb744589bc493855e6777ba16637ae9164d60da1.zip | |
remove a bunch of unused private methods
found with a smarter version of -Wunused-member-function that I'm playwing with.
Appologies in advance if I removed someone's WIP code.
ARCMigrate/TransProperties.cpp | 8 -----
AST/MicrosoftMangle.cpp | 1
Analysis/AnalysisDeclContext.cpp | 5 ---
Analysis/LiveVariables.cpp | 14 ----------
Index/USRGeneration.cpp | 10 -------
Sema/Sema.cpp | 33 +++++++++++++++++++++---
Sema/SemaChecking.cpp | 3 --
Sema/SemaDecl.cpp | 20 ++------------
StaticAnalyzer/Checkers/GenericTaintChecker.cpp | 1
9 files changed, 34 insertions(+), 61 deletions(-)
llvm-svn: 204561
Diffstat (limited to 'clang/lib/Index')
| -rw-r--r-- | clang/lib/Index/USRGeneration.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/clang/lib/Index/USRGeneration.cpp b/clang/lib/Index/USRGeneration.cpp index 850a90d53ec..b3ab9de4d38 100644 --- a/clang/lib/Index/USRGeneration.cpp +++ b/clang/lib/Index/USRGeneration.cpp @@ -105,16 +105,6 @@ public: void GenObjCCategory(StringRef cls, StringRef cat) { generateUSRForObjCCategory(cls, cat, Out); } - /// Generate a USR fragment for an Objective-C instance variable. The - /// complete USR can be created by concatenating the USR for the - /// encompassing class with this USR fragment. - void GenObjCIvar(StringRef ivar) { - generateUSRForObjCIvar(ivar, Out); - } - /// Generate a USR fragment for an Objective-C method. - void GenObjCMethod(StringRef sel, bool isInstanceMethod) { - generateUSRForObjCMethod(sel, isInstanceMethod, Out); - } /// Generate a USR fragment for an Objective-C property. void GenObjCProperty(StringRef prop) { generateUSRForObjCProperty(prop, Out); |

