forked from OSchip/llvm-project
[cleanup] Remove some unused #ifdef's
This is all going through the VFS layer now, so there's nothing platform-specific here. llvm-svn: 239573
This commit is contained in:
parent
9d268e178e
commit
b5aee61c36
|
@ -25,16 +25,8 @@
|
|||
#include "llvm/ADT/StringRef.h"
|
||||
#include "llvm/Support/Allocator.h"
|
||||
#include <memory>
|
||||
// FIXME: Enhance libsystem to support inode and other fields in stat.
|
||||
#include <sys/types.h>
|
||||
#include <map>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
typedef unsigned short mode_t;
|
||||
#endif
|
||||
|
||||
struct stat;
|
||||
|
||||
namespace llvm {
|
||||
class MemoryBuffer;
|
||||
}
|
||||
|
|
|
@ -15,19 +15,8 @@
|
|||
#include "clang/Basic/VirtualFileSystem.h"
|
||||
#include "llvm/Support/Path.h"
|
||||
|
||||
// FIXME: This is terrible, we need this for ::close.
|
||||
#if !defined(_MSC_VER) && !defined(__MINGW32__)
|
||||
#include <unistd.h>
|
||||
#include <sys/uio.h>
|
||||
#else
|
||||
#include <io.h>
|
||||
#endif
|
||||
using namespace clang;
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#define S_ISDIR(s) ((_S_IFDIR & s) !=0)
|
||||
#endif
|
||||
|
||||
void FileSystemStatCache::anchor() { }
|
||||
|
||||
static void copyStatusToFileData(const vfs::Status &Status,
|
||||
|
|
Loading…
Reference in New Issue