From d96e7e0e5a02b6d9e5af50f3648144ff594d9230 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 12 Mar 2009 13:11:48 -0400 Subject: COMP: Do not use void returns VS 6 does not support the C++ void returns feature. This removes an accidental use of it. --- Source/cmCacheManager.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx index bc3830f..a263bcf 100644 --- a/Source/cmCacheManager.cxx +++ b/Source/cmCacheManager.cxx @@ -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); } } -- cgit v0.12