diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-16 22:38:40 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-16 22:38:40 +0000 |
commit | c363cb1929c7908c8c8c4b77d025c2ccb09284ae (patch) | |
tree | d1f761cf6225913e794b8667c1bb9734ce3555e4 /include/clang/Frontend/HeaderSearchOptions.h | |
parent | 6143ea28a922ebd1d81a4fc0093d4daeab1e42ac (diff) |
Store more information in HeaderSearchOptions so that its initialization is not
language dependent.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@88981 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/HeaderSearchOptions.h')
-rw-r--r-- | include/clang/Frontend/HeaderSearchOptions.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/clang/Frontend/HeaderSearchOptions.h b/include/clang/Frontend/HeaderSearchOptions.h index 967f9067ca..500663b82c 100644 --- a/include/clang/Frontend/HeaderSearchOptions.h +++ b/include/clang/Frontend/HeaderSearchOptions.h @@ -59,11 +59,11 @@ public: /// environment variable for gcc. std::string EnvIncPath; - /// A (system-path) delimited list of include paths to be added from the - /// environment following the user specified includes and the \see EnvIncPath - /// includes (but prior to builtin and standard includes). This is parsed in - /// the same manner as the CPATH environment variable for gcc. - std::string LangEnvIncPath; + /// Per-language environmental include paths, see \see EnvIncPath. + std::string CEnvIncPath; + std::string ObjCEnvIncPath; + std::string CXXEnvIncPath; + std::string ObjCXXEnvIncPath; /// If non-empty, the path to the compiler builtin include directory, which /// will be searched following the user and environment includes. |