From: <sv...@ww...> - 2004-12-31 22:31:16
|
Author: delta Date: 2004-12-31 14:31:06 -0800 (Fri, 31 Dec 2004) New Revision: 1424 Modified: trunk/CSP/SimData/CHANGES.current trunk/CSP/SimData/Include/SimData/Thread.h Log: * Typo in Task:ThreadId::operator&&. Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=1424 Modified: trunk/CSP/SimData/CHANGES.current =================================================================== --- trunk/CSP/SimData/CHANGES.current 2004-12-31 21:37:13 UTC (rev 1423) +++ trunk/CSP/SimData/CHANGES.current 2004-12-31 22:31:06 UTC (rev 1424) @@ -6,7 +6,7 @@ A small wrapper for Task:ThreadId is provided to garanty compatibility with this new version. This change is enabled when defining PTHREADS_WIN which should leave safe the GNU/Linux version. Also, the pthreads binaries - have been renamed pthreadVC1.* + have been renamed pthreadVC1. 2004-12-12: delta * Fixed a few warnings in Random.h under msvc. Hopefully gcc Modified: trunk/CSP/SimData/Include/SimData/Thread.h =================================================================== --- trunk/CSP/SimData/Include/SimData/Thread.h 2004-12-31 21:37:13 UTC (rev 1423) +++ trunk/CSP/SimData/Include/SimData/Thread.h 2004-12-31 22:31:06 UTC (rev 1424) @@ -159,7 +159,7 @@ return !(*this == i); } bool operator&&(bool other) const { - return (*this == 0) && other; + return (*this != 0) && other; } }; #endif |