summaryrefslogtreecommitdiff
path: root/lib/Support/MemoryBuffer.cpp
diff options
context:
space:
mode:
authorDavid Meyer <pdox@google.com>2011-10-20 21:57:46 +0000
committerDavid Meyer <pdox@google.com>2011-10-20 21:57:46 +0000
commite1d0b4fc252443299db87264aa4f3a889b7480aa (patch)
tree7fdc9bfa29d965f15903f996ddc6db2e9c977500 /lib/Support/MemoryBuffer.cpp
parent50965031848f391f98f11770b3823497d5bf5c15 (diff)
downloadllvm-e1d0b4fc252443299db87264aa4f3a889b7480aa.tar.gz
llvm-e1d0b4fc252443299db87264aa4f3a889b7480aa.tar.bz2
llvm-e1d0b4fc252443299db87264aa4f3a889b7480aa.tar.xz
Remove unused include of sys/uio.h in MemoryBuffer.cpp. It was not correctly protected by ifdef either.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142623 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/MemoryBuffer.cpp')
-rw-r--r--lib/Support/MemoryBuffer.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Support/MemoryBuffer.cpp b/lib/Support/MemoryBuffer.cpp
index 0771af5fee..cc3f6a8a48 100644
--- a/lib/Support/MemoryBuffer.cpp
+++ b/lib/Support/MemoryBuffer.cpp
@@ -29,7 +29,6 @@
#include <sys/stat.h>
#if !defined(_MSC_VER) && !defined(__MINGW32__)
#include <unistd.h>
-#include <sys/uio.h>
#else
#include <io.h>
#endif