VS 6 does not support the C++ void returns feature. This removes an accidental use of it.
@@ -898,7 +898,7 @@ void cmCacheManager::CacheIterator::SetProperty(const char* p, const char* v)
{
if(!this->IsAtEnd())
- return this->GetEntry().SetProperty(p, v);
+ this->GetEntry().SetProperty(p, v);
}