aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-04-14 00:56:59 +0000
committerMike Stump <mrs@apple.com>2009-04-14 00:56:59 +0000
commit38c1effc8549af15d5049a684257c7ca8e9c7a87 (patch)
treea06b66ebf752854dd5af5bc332b6dbc786269515
parentbb3fde337fb712c0e6da8790d431621be4793048 (diff)
Fix build error.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69009 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/ExternalASTSource.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/ExternalASTSource.h b/include/clang/AST/ExternalASTSource.h
index 54fe3639ad..2ec29d80ec 100644
--- a/include/clang/AST/ExternalASTSource.h
+++ b/include/clang/AST/ExternalASTSource.h
@@ -86,7 +86,7 @@ public:
/// \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.