summaryrefslogtreecommitdiffstats
path: root/Source/cmDependsC.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-09-13 16:43:32 (GMT)
committerBrad King <brad.king@kitware.com>2006-09-13 16:43:32 (GMT)
commit6a347e9858da9540f6f9df9a3c669a1a21e15bd8 (patch)
tree2b8b53daee4f56035673803f6cca2d7e221d5b8f /Source/cmDependsC.h
parent6ce165de4394303719fc1c06e035e027a3cf69a7 (diff)
downloadCMake-6a347e9858da9540f6f9df9a3c669a1a21e15bd8.zip
CMake-6a347e9858da9540f6f9df9a3c669a1a21e15bd8.tar.gz
CMake-6a347e9858da9540f6f9df9a3c669a1a21e15bd8.tar.bz2
ENH: Patch from Alex to speed dependency scanning approximately 2x.
Diffstat (limited to 'Source/cmDependsC.h')
-rw-r--r--Source/cmDependsC.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmDependsC.h b/Source/cmDependsC.h
index 429a590..a891460 100644
--- a/Source/cmDependsC.h
+++ b/Source/cmDependsC.h
@@ -80,7 +80,8 @@ protected:
std::queue<UnscannedEntry> Unscanned;
t_CharBuffer Buffer;
- std::map<cmStdString, cmIncludeLines *> fileCache;
+ std::map<cmStdString, cmIncludeLines *> FileCache;
+ std::map<cmStdString, cmStdString> HeaderLocationCache;
cmStdString CacheFileName;