Well, it shouldn't be quite *that* obviously broken.

Quick fix to AddMethodToCXXRecordType's non-static
definition.

llvm-svn: 114124
This commit is contained in:
Sean Callanan 2010-09-16 22:32:47 +00:00
parent e44f1fbb4b
commit d24a7c893b
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ public:
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);