diff options
author | David Meyer <pdox@google.com> | 2011-10-20 21:57:46 +0000 |
---|---|---|
committer | David Meyer <pdox@google.com> | 2011-10-20 21:57:46 +0000 |
commit | a93b4bc98ce645d25da8c0ed780521d745e2a028 (patch) | |
tree | 394f16f746103f80249624a95388b9a54e2454ea /llvm/lib/Support | |
parent | 48da0ed477ea7764e5494f025ba3c2528f87e1bc (diff) | |
download | bcm5719-llvm-a93b4bc98ce645d25da8c0ed780521d745e2a028.tar.gz bcm5719-llvm-a93b4bc98ce645d25da8c0ed780521d745e2a028.zip |
Remove unused include of sys/uio.h in MemoryBuffer.cpp. It was not correctly protected by ifdef either.
llvm-svn: 142623
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/MemoryBuffer.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Support/MemoryBuffer.cpp b/llvm/lib/Support/MemoryBuffer.cpp index 0771af5fee0..cc3f6a8a487 100644 --- a/llvm/lib/Support/MemoryBuffer.cpp +++ b/llvm/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 |