diff options
author | Brad King <brad.king@kitware.com> | 2008-06-03 10:02:18 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-06-03 10:02:18 -0400 |
commit | 24531641269058492f05b78cc0df0e8b7cc28ca2 (patch) | |
tree | 8b5bc518e470071eafc1658d8f3c48629be0c4e6 /Source/cmGlobalGenerator.cxx | |
parent | e79b73d61f7523cf6ce4d989995ede808da212df (diff) | |
download | cmake-24531641269058492f05b78cc0df0e8b7cc28ca2.tar.gz |
COMP: Fix bootstrap build after previous change to signature of AddRuleHash.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index f34888f27f..aa7c6f5106 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -1979,8 +1979,8 @@ cmGlobalGenerator::AddRuleHash(const std::vector<std::string>& outputs, this->RuleHashes[fname] = hash; #else (void)outputs; - (void)depends; - (void)commands; + (void)first; + (void)last; #endif } |