]> granicus.if.org Git - clang/commitdiff
Fix a case that I missed in r133550.
authorBob Wilson <bob.wilson@apple.com>
Tue, 21 Jun 2011 21:58:07 +0000 (21:58 +0000)
committerBob Wilson <bob.wilson@apple.com>
Tue, 21 Jun 2011 21:58:07 +0000 (21:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@133551 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Frontend/HeaderSearchOptions.h

index deb08265f1b3f92f8c4b017484988a4e4010e1a4..0347f98fd5baf8c2731254e16def626f186b5df0 100644 (file)
@@ -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));
   }
 };