diff options
author | Brad King <brad.king@kitware.com> | 2008-01-17 21:24:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-17 21:24:51 (GMT) |
commit | 83901b30da3e42c43b06d1579a86b14be2acf50e (patch) | |
tree | eab0dfbc659676d43f206f5fbedd1c2c07f838e8 /Source/cmSetPropertyCommand.cxx | |
parent | b8357db11d96eeb995b8443404e46466a493ab15 (diff) | |
download | CMake-83901b30da3e42c43b06d1579a86b14be2acf50e.zip CMake-83901b30da3e42c43b06d1579a86b14be2acf50e.tar.gz CMake-83901b30da3e42c43b06d1579a86b14be2acf50e.tar.bz2 |
COMP: Fix VS build.
Diffstat (limited to 'Source/cmSetPropertyCommand.cxx')
-rw-r--r-- | Source/cmSetPropertyCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSetPropertyCommand.cxx b/Source/cmSetPropertyCommand.cxx index a0455aa..3b6a53a 100644 --- a/Source/cmSetPropertyCommand.cxx +++ b/Source/cmSetPropertyCommand.cxx @@ -356,7 +356,7 @@ bool cmSetPropertyCommand::HandleTestMode() ti != tests.end(); ++ti) { cmTest* test = *ti; - std::set<cmStdString>::const_iterator ni = + std::set<cmStdString>::iterator ni = this->Names.find(test->GetName()); if(ni != this->Names.end()) { |