aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Basic/FileManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang/Basic/FileManager.h')
-rw-r--r--include/clang/Basic/FileManager.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/Basic/FileManager.h b/include/clang/Basic/FileManager.h
index 77eb1f4d1e..d5d2da7c26 100644
--- a/include/clang/Basic/FileManager.h
+++ b/include/clang/Basic/FileManager.h
@@ -141,7 +141,8 @@ public:
/// names (e.g. symlinked) will be treated as a single file.
///
class FileManager {
-
+ const FileSystemOptions &FileSystemOpts;
+
class UniqueDirContainer;
class UniqueFileContainer;
@@ -170,11 +171,10 @@ class FileManager {
// Caching.
llvm::OwningPtr<StatSysCallCache> StatCache;
- int stat_cached(const char* path, struct stat* buf,
- const FileSystemOptions &FileSystemOpts);
+ int stat_cached(const char* path, struct stat* buf);
public:
- FileManager();
+ FileManager(const FileSystemOptions &FileSystemOpts);
~FileManager();
/// \brief Installs the provided StatSysCallCache object within