aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectMemory.cpp
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2015-09-22 17:04:24 +0000
committerBruce Mitchener <bruce.mitchener@gmail.com>2015-09-22 17:04:24 +0000
commit23a3b0e8a4a95e6d0337ec431c2034247df34112 (patch)
treeb62f65b5fa19a9c3b1e9894c8495efe09ad9d74e /lldb/source/Commands/CommandObjectMemory.cpp
parent503fe9408df10dadf7e700bb34ba0f0c80424e7f (diff)
downloadllvm-23a3b0e8a4a95e6d0337ec431c2034247df34112.zip
llvm-23a3b0e8a4a95e6d0337ec431c2034247df34112.tar.gz
llvm-23a3b0e8a4a95e6d0337ec431c2034247df34112.tar.bz2
Rename clang_type_t to opaque_compiler_type_t.
Summary: This is no longer related to Clang and is just an opaque pointer to data for a compiler type. Reviewers: clayborg Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D13039 llvm-svn: 248288
Diffstat (limited to 'lldb/source/Commands/CommandObjectMemory.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectMemory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectMemory.cpp b/lldb/source/Commands/CommandObjectMemory.cpp
index 9eca2a8..5ee5e1e 100644
--- a/lldb/source/Commands/CommandObjectMemory.cpp
+++ b/lldb/source/Commands/CommandObjectMemory.cpp
@@ -533,7 +533,7 @@ protected:
clang::TypeDecl *tdecl = target->GetPersistentVariables().GetPersistentType(ConstString(lookup_type_name));
if (tdecl)
{
- clang_ast_type.SetCompilerType(ClangASTContext::GetASTContext(&tdecl->getASTContext()),(const lldb::clang_type_t)tdecl->getTypeForDecl());
+ clang_ast_type.SetCompilerType(ClangASTContext::GetASTContext(&tdecl->getASTContext()),(const lldb::opaque_compiler_type_t)tdecl->getTypeForDecl());
}
}