diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-09-22 10:19:04 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-09-22 10:19:04 +0000 |
commit | e119e84ea5ea66eb2090aec05310c23e9d6f63fc (patch) | |
tree | 3133036351ef102011ac3c457f89f3490e60dec8 /lib/Sema/ParseAST.cpp | |
parent | b850ddd2ce2b6f4e223396fd160752f465b7ee29 (diff) |
Spell function pointer correctly.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82543 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/ParseAST.cpp')
-rw-r--r-- | lib/Sema/ParseAST.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/ParseAST.cpp b/lib/Sema/ParseAST.cpp index d09af0a450..d3f26d875c 100644 --- a/lib/Sema/ParseAST.cpp +++ b/lib/Sema/ParseAST.cpp @@ -35,7 +35,7 @@ using namespace clang; void clang::ParseAST(Preprocessor &PP, ASTConsumer *Consumer, ASTContext &Ctx, bool PrintStats, bool CompleteTranslationUnit, - CodeCompleteConsumer *(CreateCodeCompleter)(Sema &, void *Data), + CodeCompleteConsumer *(*CreateCodeCompleter)(Sema &, void *Data), void *CreateCodeCompleterData) { // Collect global stats on Decls/Stmts (until we have a module streamer). if (PrintStats) { |