diff options
author | Brad King <brad.king@kitware.com> | 2009-02-02 19:36:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-02-02 19:36:45 (GMT) |
commit | fd40f274201e59ab9ee96f9f20d8923229e437dd (patch) | |
tree | f2c2b3f4dd13f33de0627c19b2f41d9bb0db848d /Source/cmGlobalGenerator.cxx | |
parent | 496c203a0bccb093fcab46c403ba876662ab6717 (diff) | |
download | CMake-fd40f274201e59ab9ee96f9f20d8923229e437dd.zip CMake-fd40f274201e59ab9ee96f9f20d8923229e437dd.tar.gz CMake-fd40f274201e59ab9ee96f9f20d8923229e437dd.tar.bz2 |
COMP: Fix rule hash code during bootstrap
During bootstrap we do not bother with rule hashing. This updates the
dummy implementation to account for the recent change in rule hash
method signatures.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index b0a6e83..d537b85 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -2035,8 +2035,7 @@ cmGlobalGenerator::AddRuleHash(const std::vector<std::string>& outputs, this->RuleHashes[fname] = hash; #else (void)outputs; - (void)first; - (void)last; + (void)content; #endif } |