diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-11-07 04:20:25 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-07 04:20:25 +0000 |
| commit | 6dc96381535a1188cc7c27443211115496aa0800 (patch) | |
| tree | 8e15016122626951aec774049760df7a7e222ce1 | |
| parent | 00f8a397c61f73f98a6d5252d03b95697e3eac19 (diff) | |
| download | bcm5719-llvm-6dc96381535a1188cc7c27443211115496aa0800.tar.gz bcm5719-llvm-6dc96381535a1188cc7c27443211115496aa0800.zip | |
Formatting fixes.
llvm-svn: 86336
| -rw-r--r-- | clang/include/clang/Frontend/InitHeaderSearch.h | 12 | ||||
| -rw-r--r-- | clang/lib/Frontend/InitHeaderSearch.cpp | 8 |
2 files changed, 10 insertions, 10 deletions
diff --git a/clang/include/clang/Frontend/InitHeaderSearch.h b/clang/include/clang/Frontend/InitHeaderSearch.h index 48c42682526..34672c73eeb 100644 --- a/clang/include/clang/Frontend/InitHeaderSearch.h +++ b/clang/include/clang/Frontend/InitHeaderSearch.h @@ -35,13 +35,13 @@ class InitHeaderSearch { std::string isysroot; public: - /// InitHeaderSearch::IncludeDirGroup - Identifies the several search path - /// lists stored internally. + /// IncludeDirGroup - Identifies the several search path + /// lists stored internally. enum IncludeDirGroup { - Quoted = 0, //< `#include ""` paths. Thing `gcc -iquote`. - Angled, //< Paths for both `#include ""` and `#include <>`. (`-I`) - System, //< Like Angled, but marks system directories. - After //< Like System, but searched after the system directories. + Quoted = 0, ///< `#include ""` paths. Thing `gcc -iquote`. + Angled, ///< Paths for both `#include ""` and `#include <>`. (`-I`) + System, ///< Like Angled, but marks system directories. + After ///< Like System, but searched after the system directories. }; InitHeaderSearch(HeaderSearch &HS, diff --git a/clang/lib/Frontend/InitHeaderSearch.cpp b/clang/lib/Frontend/InitHeaderSearch.cpp index ed52211e380..6f87e033ea9 100644 --- a/clang/lib/Frontend/InitHeaderSearch.cpp +++ b/clang/lib/Frontend/InitHeaderSearch.cpp @@ -120,10 +120,10 @@ void InitHeaderSearch::AddGnuCPlusPlusIncludePaths(const std::string &Base, void InitHeaderSearch::AddMinGWCPlusPlusIncludePaths(const std::string &Base, const char *Arch, const char *Version) { - std::string localBase = Base + "/" + Arch + "/" + Version + "/include"; - AddPath(localBase, System, true, false, false); - AddPath(localBase + "/c++", System, true, false, false); - AddPath(localBase + "/c++/backward", System, true, false, false); + std::string localBase = Base + "/" + Arch + "/" + Version + "/include"; + AddPath(localBase, System, true, false, false); + AddPath(localBase + "/c++", System, true, false, false); + AddPath(localBase + "/c++/backward", System, true, false, false); } // FIXME: This probably should goto to some platform utils place. |

