diff options
author | Greg Clayton <gclayton@apple.com> | 2015-08-11 22:53:00 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2015-08-11 22:53:00 +0000 |
commit | a1e5dc86a6306b91caf1bd4c5ed7ca1113405111 (patch) | |
tree | 6104ff1effe325c412ba70449db68df49298a32a /lldb/source/Core/ValueObjectConstResultCast.cpp | |
parent | c49e4fe9ccff7587a271d5c17ecad130d2dea201 (diff) | |
download | bcm5719-llvm-a1e5dc86a6306b91caf1bd4c5ed7ca1113405111.tar.gz bcm5719-llvm-a1e5dc86a6306b91caf1bd4c5ed7ca1113405111.zip |
ClangASTType is now CompilerType.
This is more preparation for multiple different kinds of types from different compilers (clang, Pascal, Go, RenderScript, Swift, etc).
llvm-svn: 244689
Diffstat (limited to 'lldb/source/Core/ValueObjectConstResultCast.cpp')
-rw-r--r-- | lldb/source/Core/ValueObjectConstResultCast.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Core/ValueObjectConstResultCast.cpp b/lldb/source/Core/ValueObjectConstResultCast.cpp index 32123f94f36..0c61cd1955c 100644 --- a/lldb/source/Core/ValueObjectConstResultCast.cpp +++ b/lldb/source/Core/ValueObjectConstResultCast.cpp @@ -19,7 +19,7 @@ using namespace lldb_private; ValueObjectConstResultCast::ValueObjectConstResultCast( ValueObject &parent, const ConstString &name, - const ClangASTType &cast_type, + const CompilerType &cast_type, lldb::addr_t live_address) : ValueObjectCast (parent, name, cast_type), m_impl(this, live_address) @@ -39,7 +39,7 @@ ValueObjectConstResultCast::Dereference (Error &error) lldb::ValueObjectSP ValueObjectConstResultCast::GetSyntheticChildAtOffset(uint32_t offset, - const ClangASTType& type, + const CompilerType& type, bool can_create) { return m_impl.GetSyntheticChildAtOffset(offset, type, can_create); @@ -69,7 +69,7 @@ ValueObjectConstResultCast::GetPointeeData (DataExtractor& data, } lldb::ValueObjectSP -ValueObjectConstResultCast::Cast (const ClangASTType &clang_ast_type) +ValueObjectConstResultCast::Cast (const CompilerType &clang_ast_type) { return m_impl.Cast(clang_ast_type); } |