[Lldb-commits] [lldb] r245185 - Try to fix the lldb build on Visual C++.
Yaron Keren via lldb-commits
lldb-commits at lists.llvm.org
Sun Aug 16 12:40:40 PDT 2015
Author: yrnkrn
Date: Sun Aug 16 14:40:40 2015
New Revision: 245185
URL: http://llvm.org/viewvc/llvm-project?rev=245185&view=rev
Log:
Try to fix the lldb build on Visual C++.
Modified:
lldb/trunk/source/Symbol/ClangASTContext.cpp
Modified: lldb/trunk/source/Symbol/ClangASTContext.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/ClangASTContext.cpp?rev=245185&r1=245184&r2=245185&view=diff
==============================================================================
--- lldb/trunk/source/Symbol/ClangASTContext.cpp (original)
+++ lldb/trunk/source/Symbol/ClangASTContext.cpp Sun Aug 16 14:40:40 2015
@@ -9079,7 +9079,7 @@ bool
ClangASTContext::ResolveClangOpaqueTypeDefinition (SymbolFileDWARF *dwarf,
DWARFCompileUnit *dwarf_cu,
const DWARFDebugInfoEntry* die,
- Type *type,
+ lldb_private::Type *type,
CompilerType &clang_type)
{
// Disable external storage for this type so we don't get anymore
@@ -12260,7 +12260,7 @@ ClangASTContext::ParseTypeFromDWARF (con
bool
ClangASTContext::CopyUniqueClassMethodTypes (SymbolFileDWARF *dst_symfile,
SymbolFileDWARF *src_symfile,
- Type *class_type,
+ lldb_private::Type *class_type,
DWARFCompileUnit* src_cu,
const DWARFDebugInfoEntry *src_class_die,
DWARFCompileUnit* dst_cu,
More information about the lldb-commits
mailing list