forked from OSchip/llvm-project
parent
79327b6efe
commit
e22adaebf5
|
@ -33,7 +33,7 @@ namespace clang {
|
|||
void ParseAST(Preprocessor &pp, ASTConsumer *C,
|
||||
ASTContext &Ctx, bool PrintStats = false,
|
||||
bool CompleteTranslationUnit = true,
|
||||
CodeCompleteConsumer *(CreateCodeCompleter)(Sema &, void *Data) = 0,
|
||||
CodeCompleteConsumer *(*CreateCodeCompleter)(Sema &, void *Data) = 0,
|
||||
void *CreateCodeCompleterData = 0);
|
||||
|
||||
} // end namespace clang
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue