aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Basic/FileManager.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-03-28 00:55:35 +0000
committerChris Lattner <sabre@nondot.org>2009-03-28 00:55:35 +0000
commit52ba870eba17e634339622dbf103434ca31935eb (patch)
tree8a227af81ac96435e4e2b8e51bc0b4533888b568 /include/clang/Basic/FileManager.h
parenteeae8f072748affce25ab4064982626361293390 (diff)
move StatListener out to top level.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67886 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/FileManager.h')
-rw-r--r--include/clang/Basic/FileManager.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/clang/Basic/FileManager.h b/include/clang/Basic/FileManager.h
index 6aa88629ce..a8ed87011f 100644
--- a/include/clang/Basic/FileManager.h
+++ b/include/clang/Basic/FileManager.h
@@ -126,7 +126,9 @@ public:
/// setStatCache - Installs the provided StatSysCallCache object within
/// the FileManager. Ownership of this object is transferred to the
/// FileManager.
- void setStatCache(StatSysCallCache *statCache) { StatCache.reset(statCache); }
+ void setStatCache(StatSysCallCache *statCache) {
+ StatCache.reset(statCache);
+ }
/// getDirectory - Lookup, cache, and verify the specified directory. This
/// returns null if the directory doesn't exist.