diff options
author | Daniel Dunbar <daniel@zuster.org> | 2013-01-30 00:34:26 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2013-01-30 00:34:26 +0000 |
commit | 59fd63581d6d572f23e82e81a50e0b940c8d1089 (patch) | |
tree | befdd6469c483fae1dfb8ab7c1aa235a584de445 /include/clang/Lex/HeaderSearchOptions.h | |
parent | e87edbd0561960a14d5d9b927dd47d4e4bf9196c (diff) |
[Frontend] Remove HeaderSearchOptions::Entry::IsInternal, which is unused.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173866 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Lex/HeaderSearchOptions.h')
-rw-r--r-- | include/clang/Lex/HeaderSearchOptions.h | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/include/clang/Lex/HeaderSearchOptions.h b/include/clang/Lex/HeaderSearchOptions.h index d739dc2afa..8fecd65726 100644 --- a/include/clang/Lex/HeaderSearchOptions.h +++ b/include/clang/Lex/HeaderSearchOptions.h @@ -52,17 +52,10 @@ public: /// path. unsigned IgnoreSysRoot : 1; - /// \brief True if this entry is an internal search path. - /// - /// This typically indicates that users didn't directly provide it, but - /// instead it was provided by a compatibility layer for a particular - /// system. - unsigned IsInternal : 1; - - Entry(StringRef path, frontend::IncludeDirGroup group, - bool isFramework, bool ignoreSysRoot, bool isInternal) + Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework, + bool ignoreSysRoot) : Path(path), Group(group), IsFramework(isFramework), - IgnoreSysRoot(ignoreSysRoot), IsInternal(isInternal) {} + IgnoreSysRoot(ignoreSysRoot) {} }; struct SystemHeaderPrefix { @@ -123,9 +116,8 @@ public: /// AddPath - Add the \p Path path to the specified \p Group list. void AddPath(StringRef Path, frontend::IncludeDirGroup Group, - bool IsFramework, bool IgnoreSysRoot, bool IsInternal = false) { - UserEntries.push_back(Entry(Path, Group, IsFramework, - IgnoreSysRoot, IsInternal)); + bool IsFramework, bool IgnoreSysRoot) { + UserEntries.push_back(Entry(Path, Group, IsFramework, IgnoreSysRoot)); } /// AddSystemHeaderPrefix - Override whether \#include directives naming a |