diff options
author | Joao Matos <ripzonetriton@gmail.com> | 2012-09-01 23:24:10 +0000 |
---|---|---|
committer | Joao Matos <ripzonetriton@gmail.com> | 2012-09-01 23:24:10 +0000 |
commit | c4f0f463fef75884063da5bde615f1f8a9d45b57 (patch) | |
tree | e4db4ad5b6ff762bdca0fa4a47469b8108a4a7d0 /lib | |
parent | 601944aeaf1369f92b90e5c279c22f557eb87cdb (diff) |
Fixed typo causing tests to fail on non-MSVC machines.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163077 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Driver/WindowsToolChain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Driver/WindowsToolChain.cpp b/lib/Driver/WindowsToolChain.cpp index 5fba6b48b0..ad2605a815 100644 --- a/lib/Driver/WindowsToolChain.cpp +++ b/lib/Driver/WindowsToolChain.cpp @@ -350,7 +350,7 @@ std::vector<std::string> clang::driver::GetWindowsSystemIncludeDirs() { }; for (unsigned i = 0; i < sizeof(FallbackPaths) / sizeof(FallbackPaths[0]); ++i) - Paths.push_back(Paths[i]); + Paths.push_back(FallbackPaths[i]); return Paths; } |