summaryrefslogtreecommitdiff
path: root/include/clang/Basic/FileManager.h
diff options
context:
space:
mode:
authorSean Silva <chisophugis@gmail.com>2015-06-11 23:34:13 +0000
committerSean Silva <chisophugis@gmail.com>2015-06-11 23:34:13 +0000
commit16c0d996040fcd17a66e4a12416d830daad02fa7 (patch)
tree8aac36b94d9082be78ba652ef0a036d491caa55c /include/clang/Basic/FileManager.h
parentaddc7c62d7c181179884998f6f3a8fad9525e081 (diff)
downloadclang-16c0d996040fcd17a66e4a12416d830daad02fa7.tar.gz
[cleanup] Remove some unused #ifdef's
This is all going through the VFS layer now, so there's nothing platform-specific here. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@239573 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/FileManager.h')
-rw-r--r--include/clang/Basic/FileManager.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/clang/Basic/FileManager.h b/include/clang/Basic/FileManager.h
index 37e19e1e27..ac0d7a15e5 100644
--- a/include/clang/Basic/FileManager.h
+++ b/include/clang/Basic/FileManager.h
@@ -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;
}