diff options
author | John Thompson <John.Thompson.JTSoftware@gmail.com> | 2014-04-23 12:57:01 +0000 |
---|---|---|
committer | John Thompson <John.Thompson.JTSoftware@gmail.com> | 2014-04-23 12:57:01 +0000 |
commit | 9be87f878588e7ed414dbfa29805883cc9cbb885 (patch) | |
tree | 1ce960127f08105e2ab290221b1106441d34d757 /unittests/Basic/SourceManagerTest.cpp | |
parent | 0f0e18f77f5ceaee634653c3a80f79298d7b7407 (diff) | |
download | clang-9be87f878588e7ed414dbfa29805883cc9cbb885.tar.gz |
Initial implementation of -modules-earch-all option, for searching for symbols in non-imported modules.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@206977 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Basic/SourceManagerTest.cpp')
-rw-r--r-- | unittests/Basic/SourceManagerTest.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/unittests/Basic/SourceManagerTest.cpp b/unittests/Basic/SourceManagerTest.cpp index d94cfe9c3f..b3796c34fe 100644 --- a/unittests/Basic/SourceManagerTest.cpp +++ b/unittests/Basic/SourceManagerTest.cpp @@ -63,6 +63,9 @@ class VoidModuleLoader : public ModuleLoader { Module::NameVisibilityKind Visibility, SourceLocation ImportLoc, bool Complain) { } + + virtual GlobalModuleIndex *loadGlobalModuleIndex(SourceLocation TriggerLoc) + { return 0; } }; TEST_F(SourceManagerTest, isBeforeInTranslationUnit) { |