diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2007-10-16 09:09:44 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2007-10-16 09:09:44 +0000 |
commit | bd0be39f4c9af5bbf92616d6f89ca5f4101420d9 (patch) | |
tree | 644bd50cc0f5aa2bb506a243f645e4522416fc27 /Basic/SourceManager.cpp | |
parent | 943140ee64e979325d25084bf4d768896601a7ce (diff) |
Unbreak mingw32. Maybe there should be something like libClandSystem? :)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43029 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Basic/SourceManager.cpp')
-rw-r--r-- | Basic/SourceManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Basic/SourceManager.cpp b/Basic/SourceManager.cpp index cc1312f049..24aba4549b 100644 --- a/Basic/SourceManager.cpp +++ b/Basic/SourceManager.cpp @@ -42,7 +42,7 @@ SourceManager::~SourceManager() { // FIXME: REMOVE THESE #include <unistd.h> #include <sys/types.h> -#if !defined(_MSC_VER) +#if !defined(_MSC_VER) && !defined(__MINGW32__) #include <sys/uio.h> #include <sys/fcntl.h> #else |