[Lldb-commits] [lldb] r114124 - /lldb/trunk/include/lldb/Symbol/ClangASTContext.h
Sean Callanan
scallanan at apple.com
Thu Sep 16 15:32:47 PDT 2010
Author: spyffe
Date: Thu Sep 16 17:32:47 2010
New Revision: 114124
URL: http://llvm.org/viewvc/llvm-project?rev=114124&view=rev
Log:
Well, it shouldn't be quite *that* obviously broken.
Quick fix to AddMethodToCXXRecordType's non-static
definition.
Modified:
lldb/trunk/include/lldb/Symbol/ClangASTContext.h
Modified: lldb/trunk/include/lldb/Symbol/ClangASTContext.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Symbol/ClangASTContext.h?rev=114124&r1=114123&r2=114124&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Symbol/ClangASTContext.h (original)
+++ lldb/trunk/include/lldb/Symbol/ClangASTContext.h Thu Sep 16 17:32:47 2010
@@ -170,7 +170,7 @@
const char *name,
void *method_type)
{
- return ClangASTContext::AddMethodToCXXRecordType(ast_context,
+ return ClangASTContext::AddMethodToCXXRecordType(m_ast_context_ap.get(),
record_clang_type,
name,
method_type);
More information about the lldb-commits
mailing list