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/DWARF/SymbolFileDWARFDebugMap.cpp | |
| 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/DWARF/SymbolFileDWARFDebugMap.cpp')
| -rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp index 6d33d6cb4f5..795e7e5d70e 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp +++ b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp @@ -778,15 +778,15 @@ SymbolFileDWARFDebugMap::ResolveTypeUID(lldb::user_id_t type_uid) } bool -SymbolFileDWARFDebugMap::CompleteType (CompilerType& clang_type) +SymbolFileDWARFDebugMap::CompleteType (CompilerType& compiler_type) { bool success = false; - if (clang_type) + if (compiler_type) { ForEachSymbolFile([&](SymbolFileDWARF *oso_dwarf) -> bool { - if (oso_dwarf->HasForwardDeclForClangType (clang_type)) + if (oso_dwarf->HasForwardDeclForClangType (compiler_type)) { - oso_dwarf->CompleteType (clang_type); + oso_dwarf->CompleteType (compiler_type); success = true; return true; } |

