[Cmake-commits] [cmake-commits] king committed cmMakefile.cxx 1.452 1.453
cmake-commits at cmake.org
cmake-commits at cmake.org
Sat Mar 8 09:21:32 EST 2008
Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv1805/Source
Modified Files:
cmMakefile.cxx
Log Message:
COMP: Avoid using operator-> on const_reverse_iterator to help old compilers.
Index: cmMakefile.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmMakefile.cxx,v
retrieving revision 1.452
retrieving revision 1.453
diff -C 2 -d -r1.452 -r1.453
*** cmMakefile.cxx 8 Mar 2008 14:13:13 -0000 1.452
--- cmMakefile.cxx 8 Mar 2008 14:21:30 -0000 1.453
***************
*** 316,322 ****
if(isError)
{
! i->Status->SetNestedError(true);
}
! cmListFileContext const& lfc = *i->Context;
msg
<< " at "
--- 316,322 ----
if(isError)
{
! (*i).Status->SetNestedError(true);
}
! cmListFileContext const& lfc = *(*i).Context;
msg
<< " at "
***************
*** 342,346 ****
while(i != this->CallStack.rend())
{
! cmListFileContext const& lfc = *i->Context;
msg << " "
<< this->LocalGenerator->Convert(lfc.FilePath.c_str(),
--- 342,346 ----
while(i != this->CallStack.rend())
{
! cmListFileContext const& lfc = *(*i).Context;
msg << " "
<< this->LocalGenerator->Convert(lfc.FilePath.c_str(),
More information about the Cmake-commits
mailing list