diff options
author | Bob Wilson <bob.wilson@apple.com> | 2011-06-21 21:58:07 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2011-06-21 21:58:07 +0000 |
commit | 57b9d9810d969df141a19dae8bea9defddb02264 (patch) | |
tree | aa20cd75590ef3f9b8fc174f9ced7c9cefb744ac | |
parent | 5dd45f13dc4463f0c18b923fe6795ce55103301d (diff) |
Fix a case that I missed in r133550.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@133551 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Frontend/HeaderSearchOptions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Frontend/HeaderSearchOptions.h b/include/clang/Frontend/HeaderSearchOptions.h index deb08265f1..0347f98fd5 100644 --- a/include/clang/Frontend/HeaderSearchOptions.h +++ b/include/clang/Frontend/HeaderSearchOptions.h @@ -98,7 +98,7 @@ public: void AddPath(llvm::StringRef Path, frontend::IncludeDirGroup Group, bool IsUserSupplied, bool IsFramework, bool IgnoreSysRoot) { UserEntries.push_back(Entry(Path, Group, IsUserSupplied, IsFramework, - !IgnoreSysRoot)); + IgnoreSysRoot)); } }; |