[cfe-commits] r69009 - /cfe/trunk/include/clang/AST/ExternalASTSource.h
Mike Stump
mrs at apple.com
Mon Apr 13 17:56:59 PDT 2009
Author: mrs
Date: Mon Apr 13 19:56:59 2009
New Revision: 69009
URL: http://llvm.org/viewvc/llvm-project?rev=69009&view=rev
Log:
Fix build error.
Modified:
cfe/trunk/include/clang/AST/ExternalASTSource.h
Modified: cfe/trunk/include/clang/AST/ExternalASTSource.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ExternalASTSource.h?rev=69009&r1=69008&r2=69009&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/ExternalASTSource.h (original)
+++ cfe/trunk/include/clang/AST/ExternalASTSource.h Mon Apr 13 19:56:59 2009
@@ -86,7 +86,7 @@
/// \brief Function that will be invoked when we begin parsing a new
/// translation unit involving this external AST source.
- virtual void StartTranslationUnit(ASTConsumer *Consumer);
+ virtual void StartTranslationUnit(ASTConsumer *Consumer) { }
/// \brief Print any statistics that have been gathered regarding
/// the external AST source.
More information about the cfe-commits
mailing list