diff options
author | Daniel Dunbar <daniel@zuster.org> | 2013-01-25 01:50:28 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2013-01-25 01:50:28 +0000 |
commit | ae4feb62e075190c8754c778a24f62f2e36e583f (patch) | |
tree | 4e6cf909b56f0c8821859ce1ea9f370892008e18 /clang/unittests/Lex | |
parent | f0add23a0e8ac0ee796cc69a28dcad52c563d97f (diff) | |
download | bcm5719-llvm-ae4feb62e075190c8754c778a24f62f2e36e583f.tar.gz bcm5719-llvm-ae4feb62e075190c8754c778a24f62f2e36e583f.zip |
[Lex] Remove DirectoryLookup.UserSpecified, which is unused.
llvm-svn: 173409
Diffstat (limited to 'clang/unittests/Lex')
-rw-r--r-- | clang/unittests/Lex/PPCallbacksTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Lex/PPCallbacksTest.cpp b/clang/unittests/Lex/PPCallbacksTest.cpp index 3cf0ed4db7d..073e07cbb4f 100644 --- a/clang/unittests/Lex/PPCallbacksTest.cpp +++ b/clang/unittests/Lex/PPCallbacksTest.cpp @@ -109,7 +109,7 @@ protected: // Add header's parent path to search path. StringRef SearchPath = path::parent_path(HeaderPath); const DirectoryEntry *DE = FileMgr.getDirectory(SearchPath); - DirectoryLookup DL(DE, SrcMgr::C_User, true, false); + DirectoryLookup DL(DE, SrcMgr::C_User, false); HeaderInfo.AddSearchPath(DL, IsSystemHeader); } |