[Cmake-commits] [cmake-commits] king committed cmCacheManager.cxx 1.109 1.110

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Mar 12 13:11:51 EDT 2009


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv6009/Source

Modified Files:
	cmCacheManager.cxx 
Log Message:
COMP: Do not use void returns

VS 6 does not support the C++ void returns feature.  This removes an
accidental use of it.


Index: cmCacheManager.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmCacheManager.cxx,v
retrieving revision 1.109
retrieving revision 1.110
diff -C 2 -d -r1.109 -r1.110
*** cmCacheManager.cxx	12 Mar 2009 14:52:37 -0000	1.109
--- cmCacheManager.cxx	12 Mar 2009 17:11:48 -0000	1.110
***************
*** 899,903 ****
    if(!this->IsAtEnd())
      {
!     return this->GetEntry().SetProperty(p, v);
      }
  }
--- 899,903 ----
    if(!this->IsAtEnd())
      {
!     this->GetEntry().SetProperty(p, v);
      }
  }



More information about the Cmake-commits mailing list