COMP: Do not use void returns

VS 6 does not support the C++ void returns feature.  This removes an
accidental use of it.
This commit is contained in:
Brad King 2009-03-12 13:11:48 -04:00
parent c54f47635c
commit d96e7e0e5a
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}