From 3ad353f3f44efdb9559adb4b690ef1b3098f0ad7 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Thu, 24 Sep 2015 03:54:50 +0000 Subject: Rename clang_type -> compiler_type for variables. Reviewers: clayborg Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D13102 llvm-svn: 248461 --- lldb/source/API/SBType.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lldb/source/API') 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(); } -- cgit v1.2.3