forked from OSchip/llvm-project
parent
79327b6efe
commit
e22adaebf5
|
|
@ -33,7 +33,7 @@ namespace clang {
|
||||||
void ParseAST(Preprocessor &pp, ASTConsumer *C,
|
void ParseAST(Preprocessor &pp, ASTConsumer *C,
|
||||||
ASTContext &Ctx, bool PrintStats = false,
|
ASTContext &Ctx, bool PrintStats = false,
|
||||||
bool CompleteTranslationUnit = true,
|
bool CompleteTranslationUnit = true,
|
||||||
CodeCompleteConsumer *(CreateCodeCompleter)(Sema &, void *Data) = 0,
|
CodeCompleteConsumer *(*CreateCodeCompleter)(Sema &, void *Data) = 0,
|
||||||
void *CreateCodeCompleterData = 0);
|
void *CreateCodeCompleterData = 0);
|
||||||
|
|
||||||
} // end namespace clang
|
} // end namespace clang
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ using namespace clang;
|
||||||
void clang::ParseAST(Preprocessor &PP, ASTConsumer *Consumer,
|
void clang::ParseAST(Preprocessor &PP, ASTConsumer *Consumer,
|
||||||
ASTContext &Ctx, bool PrintStats,
|
ASTContext &Ctx, bool PrintStats,
|
||||||
bool CompleteTranslationUnit,
|
bool CompleteTranslationUnit,
|
||||||
CodeCompleteConsumer *(CreateCodeCompleter)(Sema &, void *Data),
|
CodeCompleteConsumer *(*CreateCodeCompleter)(Sema &, void *Data),
|
||||||
void *CreateCodeCompleterData) {
|
void *CreateCodeCompleterData) {
|
||||||
// Collect global stats on Decls/Stmts (until we have a module streamer).
|
// Collect global stats on Decls/Stmts (until we have a module streamer).
|
||||||
if (PrintStats) {
|
if (PrintStats) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue