浏览代码

COMP: Do not use void returns

VS 6 does not support the C++ void returns feature.  This removes an
accidental use of it.
Brad King 17 年之前
父节点
当前提交
d96e7e0e5a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Source/cmCacheManager.cxx

+ 1 - 1
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);
     }
 }