diff options
-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)); } }; |