[Lldb-commits] [lldb] r200085 - Track clang changes from r200082
Alp Toker
alp at nuanti.com
Sat Jan 25 08:57:13 PST 2014
Author: alp
Date: Sat Jan 25 10:57:13 2014
New Revision: 200085
URL: http://llvm.org/viewvc/llvm-project?rev=200085&view=rev
Log:
Track clang changes from r200082
Modified:
lldb/trunk/source/Symbol/ClangASTType.cpp
Modified: lldb/trunk/source/Symbol/ClangASTType.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/ClangASTType.cpp?rev=200085&r1=200084&r2=200085&view=diff
==============================================================================
--- lldb/trunk/source/Symbol/ClangASTType.cpp (original)
+++ lldb/trunk/source/Symbol/ClangASTType.cpp Sat Jan 25 10:57:13 2014
@@ -1624,7 +1624,7 @@ ClangASTType::GetFunctionReturnType () c
QualType qual_type(GetCanonicalQualType());
const FunctionProtoType* func = dyn_cast<FunctionProtoType>(qual_type.getTypePtr());
if (func)
- return ClangASTType(m_ast, func->getResultType());
+ return ClangASTType(m_ast, func->getReturnType());
}
return ClangASTType();
}
@@ -4714,7 +4714,7 @@ ClangASTType::AddMethodToCXXRecordType (
cxx_method_decl = CXXConversionDecl::Create (*m_ast,
cxx_record_decl,
SourceLocation(),
- DeclarationNameInfo (m_ast->DeclarationNames.getCXXConversionFunctionName (m_ast->getCanonicalType (function_type->getResultType())), SourceLocation()),
+ DeclarationNameInfo (m_ast->DeclarationNames.getCXXConversionFunctionName (m_ast->getCanonicalType (function_type->getReturnType())), SourceLocation()),
method_qual_type,
NULL, // TypeSourceInfo *
is_inline,
@@ -5142,7 +5142,7 @@ ClangASTType::AddMethodToObjCObjectType
SourceLocation(), // beginLoc,
SourceLocation(), // endLoc,
method_selector,
- method_function_prototype->getResultType(),
+ method_function_prototype->getReturnType(),
NULL, // TypeSourceInfo *ResultTInfo,
GetDeclContextForType (),
name[0] == '-',
More information about the lldb-commits
mailing list