diff options
author | Brad King <brad.king@kitware.com> | 2006-09-13 12:43:32 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-09-13 12:43:32 -0400 |
commit | 6a347e9858da9540f6f9df9a3c669a1a21e15bd8 (patch) | |
tree | 2b8b53daee4f56035673803f6cca2d7e221d5b8f /Source/cmDependsC.h | |
parent | 6ce165de4394303719fc1c06e035e027a3cf69a7 (diff) | |
download | cmake-6a347e9858da9540f6f9df9a3c669a1a21e15bd8.tar.gz |
ENH: Patch from Alex to speed dependency scanning approximately 2x.
Diffstat (limited to 'Source/cmDependsC.h')
-rw-r--r-- | Source/cmDependsC.h | 3 |
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; |