[Cmake-commits] [cmake-commits] hoffman committed cmSetSourceFilesPropertiesCommand.cxx 1.19 1.20

cmake-commits at cmake.org cmake-commits at cmake.org
Thu May 8 15:49:56 EDT 2008


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

Modified Files:
	cmSetSourceFilesPropertiesCommand.cxx 
Log Message:
BUG:6990 fix crash with set_source_files_properties


Index: cmSetSourceFilesPropertiesCommand.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmSetSourceFilesPropertiesCommand.cxx,v
retrieving revision 1.19
retrieving revision 1.20
diff -C 2 -d -r1.19 -r1.20
*** cmSetSourceFilesPropertiesCommand.cxx	15 Feb 2008 16:22:23 -0000	1.19
--- cmSetSourceFilesPropertiesCommand.cxx	8 May 2008 19:49:53 -0000	1.20
***************
*** 34,38 ****
    j = args.begin();
    // old style allows for specifier before PROPERTIES keyword
!   while (*j != "ABSTRACT" &&
           *j != "WRAP_EXCLUDE" &&
           *j != "GENERATED" &&
--- 34,39 ----
    j = args.begin();
    // old style allows for specifier before PROPERTIES keyword
!   while (j != args.end() &&
!          *j != "ABSTRACT" &&
           *j != "WRAP_EXCLUDE" &&
           *j != "GENERATED" &&



More information about the Cmake-commits mailing list