[Cmake-commits] [cmake-commits] alex committed cmExtraCodeBlocksGenerator.cxx 1.24 1.25

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Jun 29 14:27:47 EDT 2009


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

Modified Files:
	cmExtraCodeBlocksGenerator.cxx 
Log Message:
COMP: don't use vector::at(), this doesn't seem to exist everyhwere
(http://www.cdash.org/CDash/viewBuildError.php?buildid=366375)

Alex


Index: cmExtraCodeBlocksGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmExtraCodeBlocksGenerator.cxx,v
retrieving revision 1.24
retrieving revision 1.25
diff -C 2 -d -r1.24 -r1.25
*** cmExtraCodeBlocksGenerator.cxx	28 Jun 2009 08:58:27 -0000	1.24
--- cmExtraCodeBlocksGenerator.cxx	29 Jun 2009 18:27:45 -0000	1.25
***************
*** 149,153 ****
         ++it)
      {
!     if ((*it).path == splitted.at(start))
        {
        if (start + 1 <  splitted.size())
--- 149,153 ----
         ++it)
      {
!     if ((*it).path == splitted[start])
        {
        if (start + 1 <  splitted.size())
***************
*** 166,170 ****
    // Not found in folders, thus insert
    Tree newFolder;
!   newFolder.path = splitted.at(start);
    if (start + 1 <  splitted.size())
      {
--- 166,170 ----
    // Not found in folders, thus insert
    Tree newFolder;
!   newFolder.path = splitted[start];
    if (start + 1 <  splitted.size())
      {



More information about the Cmake-commits mailing list