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/API | |
| 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/API')
| -rw-r--r-- | lldb/source/API/SBType.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/API/SBType.cpp b/lldb/source/API/SBType.cpp index 4da349bbb1b..dcdbbc71d20 100644 --- a/lldb/source/API/SBType.cpp +++ b/lldb/source/API/SBType.cpp @@ -269,9 +269,9 @@ SBType::GetFunctionReturnType () { if (IsValid()) { - CompilerType return_clang_type (m_opaque_sp->GetCompilerType(true).GetFunctionReturnType()); - if (return_clang_type.IsValid()) - return SBType(return_clang_type); + CompilerType return_type (m_opaque_sp->GetCompilerType(true).GetFunctionReturnType()); + if (return_type.IsValid()) + return SBType(return_type); } return lldb::SBType(); } |

