diff options
| author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-09-24 03:54:50 +0000 |
|---|---|---|
| committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-09-24 03:54:50 +0000 |
| commit | 3ad353f3f44efdb9559adb4b690ef1b3098f0ad7 (patch) | |
| tree | fc788af6e694010ed13aa581319bedba6f2102b1 /lldb/source/Plugins/SymbolFile/Symtab | |
| parent | 74621cced742f10c4ba733793757a73d1bd60fa7 (diff) | |
| download | bcm5719-llvm-3ad353f3f44efdb9559adb4b690ef1b3098f0ad7.tar.gz bcm5719-llvm-3ad353f3f44efdb9559adb4b690ef1b3098f0ad7.zip | |
Rename clang_type -> compiler_type for variables.
Reviewers: clayborg
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D13102
llvm-svn: 248461
Diffstat (limited to 'lldb/source/Plugins/SymbolFile/Symtab')
| -rw-r--r-- | lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp | 2 | ||||
| -rw-r--r-- | lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp b/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp index d535efd1f13..ea8991c6351 100644 --- a/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp +++ b/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp @@ -291,7 +291,7 @@ SymbolFileSymtab::ResolveTypeUID(lldb::user_id_t type_uid) } bool -SymbolFileSymtab::CompleteType (lldb_private::CompilerType& clang_opaque_type) +SymbolFileSymtab::CompleteType (lldb_private::CompilerType& compiler_type) { return false; } diff --git a/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h b/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h index f130cdb07f3..883055e2edf 100644 --- a/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h +++ b/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h @@ -82,7 +82,7 @@ public: ResolveTypeUID(lldb::user_id_t type_uid); virtual bool - CompleteType (lldb_private::CompilerType& clang_type); + CompleteType (lldb_private::CompilerType& compiler_type); virtual uint32_t ResolveSymbolContext (const lldb_private::Address& so_addr, uint32_t resolve_scope, lldb_private::SymbolContext& sc); |

