summaryrefslogtreecommitdiff
path: root/Source/cmListFileCache.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-19 14:34:15 -0400
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-19 14:34:15 -0400
commit0301b8366b1cd0ae39ff92589f75be70746cfe3a (patch)
treea06f4c2fb8d60cb9956e74effd6a7f876f08f24d /Source/cmListFileCache.cxx
parent7dbff466389f58db2be556f03f32f55a9bb8c92a (diff)
downloadcmake-0301b8366b1cd0ae39ff92589f75be70746cfe3a.tar.gz
Add a way to remove files from cache
Diffstat (limited to 'Source/cmListFileCache.cxx')
-rw-r--r--Source/cmListFileCache.cxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmListFileCache.cxx b/Source/cmListFileCache.cxx
index 83dd3cf665..0b6e0b8cca 100644
--- a/Source/cmListFileCache.cxx
+++ b/Source/cmListFileCache.cxx
@@ -109,3 +109,13 @@ bool cmListFileCache::CacheFile(const char* path)
m_ListFileCache[path] = inFile;
return true;
}
+
+void cmListFileCache::FlushCache(const char* path)
+{
+ ListFileMap::iterator it = m_ListFileCache.find(path);
+ if ( it != m_ListFileCache.end() )
+ {
+ m_ListFileCache.erase(it);
+ return;
+ }
+}