diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-01-26 04:42:21 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-01-26 04:42:21 +0000 |
commit | 789f373f342fadf86fd475dc42bf6e33a3e67eb9 (patch) | |
tree | 82ce5aa9559ccc192ee991f5ff45c78dbbb23449 | |
parent | 623e8778c12c193ffc6afc61cd0dcccb7d5f3916 (diff) | |
download | bcm5719-llvm-789f373f342fadf86fd475dc42bf6e33a3e67eb9.tar.gz bcm5719-llvm-789f373f342fadf86fd475dc42bf6e33a3e67eb9.zip |
Remove the headers now that ::close() is not used.
llvm-svn: 149044
-rw-r--r-- | clang/lib/Rewrite/FrontendActions.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/clang/lib/Rewrite/FrontendActions.cpp b/clang/lib/Rewrite/FrontendActions.cpp index 001a043d803..a35861df830 100644 --- a/clang/lib/Rewrite/FrontendActions.cpp +++ b/clang/lib/Rewrite/FrontendActions.cpp @@ -24,13 +24,6 @@ #include "llvm/Support/Path.h" #include "llvm/Support/FileSystem.h" -// FIXME: This is terrible, we need this for ::close. -#if !defined(_MSC_VER) -#include <unistd.h> -#else -#include <io.h> -#endif - using namespace clang; //===----------------------------------------------------------------------===// |