diff options
author | Brad King <brad.king@kitware.com> | 2009-03-12 17:11:48 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-03-12 17:11:48 (GMT) |
commit | d96e7e0e5a02b6d9e5af50f3648144ff594d9230 (patch) | |
tree | c6661570dc62884a9b98d3413c0abd82a863d9b4 /Source/cmCacheManager.cxx | |
parent | c54f47635c7f4eda101cc092605481efb9e5275d (diff) | |
download | CMake-d96e7e0e5a02b6d9e5af50f3648144ff594d9230.zip CMake-d96e7e0e5a02b6d9e5af50f3648144ff594d9230.tar.gz CMake-d96e7e0e5a02b6d9e5af50f3648144ff594d9230.tar.bz2 |
COMP: Do not use void returns
VS 6 does not support the C++ void returns feature. This removes an
accidental use of it.
Diffstat (limited to 'Source/cmCacheManager.cxx')
-rw-r--r-- | Source/cmCacheManager.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |