diff options
author | Brad King <brad.king@kitware.com> | 2007-02-05 09:48:38 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-02-05 09:48:38 -0500 |
commit | 6bba86c8c8ba6f58c0fd650d0b65d4ed4cf1d727 (patch) | |
tree | e975f86f72be360f0fadfa80b92a1b3fb1f73672 /Source/cmDependsC.h | |
parent | 9e61ee2bedb78fd230af490a617a5794c30213f4 (diff) | |
download | cmake-6bba86c8c8ba6f58c0fd650d0b65d4ed4cf1d727.tar.gz |
BUG: Patch from Alex to recompute dependencies when the include regex changes. This addresses bug#4168.
Diffstat (limited to 'Source/cmDependsC.h')
-rw-r--r-- | Source/cmDependsC.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmDependsC.h b/Source/cmDependsC.h index a891460279..ce02aff2c8 100644 --- a/Source/cmDependsC.h +++ b/Source/cmDependsC.h @@ -60,6 +60,9 @@ protected: // recursively and which to complain about not finding. cmsys::RegularExpression IncludeRegexScan; cmsys::RegularExpression IncludeRegexComplain; + const std::string IncludeRegexLineString; + const std::string IncludeRegexScanString; + const std::string IncludeRegexComplainString; public: // Data structures for dependency graph walk. |