diff options
author | Mike Stump <mrs@apple.com> | 2009-04-14 00:56:59 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-04-14 00:56:59 +0000 |
commit | d74673133d3d0029789dc4fba615d13dd87c2eae (patch) | |
tree | 7ad69e9c08a6ee70dec5bdb2ae7b447d12c74fed | |
parent | 83593f41679fd037f59bbff143e649b0aa63c4fd (diff) | |
download | bcm5719-llvm-d74673133d3d0029789dc4fba615d13dd87c2eae.tar.gz bcm5719-llvm-d74673133d3d0029789dc4fba615d13dd87c2eae.zip |
Fix build error.
llvm-svn: 69009
-rw-r--r-- | clang/include/clang/AST/ExternalASTSource.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/AST/ExternalASTSource.h b/clang/include/clang/AST/ExternalASTSource.h index 54fe3639ad0..2ec29d80ec0 100644 --- a/clang/include/clang/AST/ExternalASTSource.h +++ b/clang/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. |