diff options
| author | Raphael Isemann <teemperor@gmail.com> | 2019-12-22 14:00:26 +0100 |
|---|---|---|
| committer | Raphael Isemann <teemperor@gmail.com> | 2019-12-22 14:01:37 +0100 |
| commit | 218601ada1496f920fadddae9a21f7d6ccf48da5 (patch) | |
| tree | 2025ff466b15564c9544ca7ebf21d7317d4490dc /lldb/include | |
| parent | 7394c15178ed9cb7bd04585526a1e73396e60e17 (diff) | |
| download | bcm5719-llvm-218601ada1496f920fadddae9a21f7d6ccf48da5.tar.gz bcm5719-llvm-218601ada1496f920fadddae9a21f7d6ccf48da5.zip | |
[lldb] Remove unused CompilerDeclContext::IsStructUnionOrClass
Diffstat (limited to 'lldb/include')
| -rw-r--r-- | lldb/include/lldb/Symbol/ClangASTContext.h | 2 | ||||
| -rw-r--r-- | lldb/include/lldb/Symbol/CompilerDeclContext.h | 2 | ||||
| -rw-r--r-- | lldb/include/lldb/Symbol/TypeSystem.h | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/lldb/include/lldb/Symbol/ClangASTContext.h b/lldb/include/lldb/Symbol/ClangASTContext.h index e0216cce3e1..b0b77305430 100644 --- a/lldb/include/lldb/Symbol/ClangASTContext.h +++ b/lldb/include/lldb/Symbol/ClangASTContext.h @@ -444,8 +444,6 @@ public: DeclContextFindDeclByName(void *opaque_decl_ctx, ConstString name, const bool ignore_using_decls) override; - bool DeclContextIsStructUnionOrClass(void *opaque_decl_ctx) override; - ConstString DeclContextGetName(void *opaque_decl_ctx) override; ConstString DeclContextGetScopeQualifiedName(void *opaque_decl_ctx) override; diff --git a/lldb/include/lldb/Symbol/CompilerDeclContext.h b/lldb/include/lldb/Symbol/CompilerDeclContext.h index fe8539ab30e..d7785ada0ba 100644 --- a/lldb/include/lldb/Symbol/CompilerDeclContext.h +++ b/lldb/include/lldb/Symbol/CompilerDeclContext.h @@ -98,8 +98,6 @@ public: ConstString GetScopeQualifiedName() const; - bool IsStructUnionOrClass() const; - private: TypeSystem *m_type_system = nullptr; void *m_opaque_decl_ctx = nullptr; diff --git a/lldb/include/lldb/Symbol/TypeSystem.h b/lldb/include/lldb/Symbol/TypeSystem.h index 5143a53674a..706831f7ee9 100644 --- a/lldb/include/lldb/Symbol/TypeSystem.h +++ b/lldb/include/lldb/Symbol/TypeSystem.h @@ -98,8 +98,6 @@ public: DeclContextFindDeclByName(void *opaque_decl_ctx, ConstString name, const bool ignore_imported_decls); - virtual bool DeclContextIsStructUnionOrClass(void *opaque_decl_ctx) = 0; - virtual ConstString DeclContextGetName(void *opaque_decl_ctx) = 0; virtual ConstString |

