diff options
Diffstat (limited to 'lldb/source/API/SBTarget.cpp')
-rw-r--r-- | lldb/source/API/SBTarget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/API/SBTarget.cpp b/lldb/source/API/SBTarget.cpp index 7e47fbf0187..f37c8f8a614 100644 --- a/lldb/source/API/SBTarget.cpp +++ b/lldb/source/API/SBTarget.cpp @@ -2153,7 +2153,7 @@ SBTarget::FindFirstType (const char* typename_cstr) // No matches, search for basic typename matches ClangASTContext *clang_ast = target_sp->GetScratchClangASTContext(); if (clang_ast) - return SBType (ClangASTType::GetBasicType (clang_ast->getASTContext(), const_typename)); + return SBType (ClangASTContext::GetBasicType (clang_ast->getASTContext(), const_typename)); } return SBType(); } @@ -2166,7 +2166,7 @@ SBTarget::GetBasicType(lldb::BasicType type) { ClangASTContext *clang_ast = target_sp->GetScratchClangASTContext(); if (clang_ast) - return SBType (ClangASTType::GetBasicType (clang_ast->getASTContext(), type)); + return SBType (ClangASTContext::GetBasicType (clang_ast->getASTContext(), type)); } return SBType(); } @@ -2233,7 +2233,7 @@ SBTarget::FindTypes (const char* typename_cstr) // No matches, search for basic typename matches ClangASTContext *clang_ast = target_sp->GetScratchClangASTContext(); if (clang_ast) - sb_type_list.Append (SBType (ClangASTType::GetBasicType (clang_ast->getASTContext(), const_typename))); + sb_type_list.Append (SBType (ClangASTContext::GetBasicType (clang_ast->getASTContext(), const_typename))); } } return sb_type_list; |