From: Marc D. <bdu...@gm...> - 2004-12-25 09:32:25
|
Well, there was a cut'n'paste error, you were just slightly faster to commit ;). My modem connection is awfully slow too. Marc On Friday 24 Dec 2004 18:38, Christian Prochnow wrote: > Hi ! > > The Patch on AtomicTraits.h changes nothing .. it was already fixed in CVS. > > Am Freitag 24 Dezember 2004 18:15 schrieb Marc Duerner: > > Update of /cvsroot/pclasses/pclasses2/include/pclasses > > In directory > > sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7400/include/pclasses > > > > Modified Files: > > AtomicTraits.h IntTypes.h > > Log Message: > > 3.4.4 fixes > > > > > > Index: AtomicTraits.h > > =================================================================== > > RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/AtomicTraits.h,v > > retrieving revision 1.1.1.1 > > retrieving revision 1.2 > > diff -u -d -r1.1.1.1 -r1.2 > > --- AtomicTraits.h 22 Dec 2004 17:54:39 -0000 1.1.1.1 > > +++ AtomicTraits.h 24 Dec 2004 17:15:50 -0000 1.2 > > @@ -41,10 +41,10 @@ > > atomic->value = val; > > } > > > > - static Type get(const AtomicType* val) throw() > > + static Type get(const AtomicType* atomic) throw() > > { > > System::CriticalSection::ScopedLock lck(atomic->lock); > > - return val->value; > > + return atomic->value; > > } > > > > static void inc(AtomicType* val) throw() > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://productguide.itmanagersjournal.com/ > _______________________________________________ > pclasses-devel mailing list > pcl...@li... > https://lists.sourceforge.net/lists/listinfo/pclasses-devel |