From 86bb94f55565c8f7a86b4076318ec837741d6212 Mon Sep 17 00:00:00 2001 From: John Thompson Date: Wed, 23 Apr 2014 19:04:32 +0000 Subject: Quick fix for layering that broke shared library build. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@207011 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Frontend/ASTUnit.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/clang/Frontend/ASTUnit.h') diff --git a/include/clang/Frontend/ASTUnit.h b/include/clang/Frontend/ASTUnit.h index 666e5dd7c7..b730cb9da7 100644 --- a/include/clang/Frontend/ASTUnit.h +++ b/include/clang/Frontend/ASTUnit.h @@ -874,8 +874,10 @@ public: void makeModuleVisible(Module *Mod, Module::NameVisibilityKind Visibility, SourceLocation ImportLoc, bool Complain) override {} - GlobalModuleIndex *loadGlobalModuleIndex(SourceLocation TriggerLoc) + GlobalModuleIndex *loadGlobalModuleIndex(SourceLocation TriggerLoc) override { return 0; } + bool lookupMissingImports(StringRef Name, SourceLocation TriggerLoc) override + { return 0; }; }; } // namespace clang -- cgit v1.2.3