summaryrefslogtreecommitdiff
path: root/Source/cmDependsC.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-09-13 12:43:32 -0400
committerBrad King <brad.king@kitware.com>2006-09-13 12:43:32 -0400
commit6a347e9858da9540f6f9df9a3c669a1a21e15bd8 (patch)
tree2b8b53daee4f56035673803f6cca2d7e221d5b8f /Source/cmDependsC.h
parent6ce165de4394303719fc1c06e035e027a3cf69a7 (diff)
downloadcmake-6a347e9858da9540f6f9df9a3c669a1a21e15bd8.tar.gz
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 429a590d34..a891460279 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;