[Lemon-commits] [lemon_svn] alpar: r3000 - hugo/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 21:51:45 CET 2006
Author: alpar
Date: Tue Oct 17 13:01:35 2006
New Revision: 3000
Modified:
hugo/trunk/lemon/time_measure.h
Log:
Compilation warning resolved.
Modified: hugo/trunk/lemon/time_measure.h
==============================================================================
--- hugo/trunk/lemon/time_measure.h (original)
+++ hugo/trunk/lemon/time_measure.h Tue Oct 17 13:01:35 2006
@@ -523,7 +523,7 @@
TimeStamp full;
unsigned int total=0;
Timer t;
- for(unsigned int tn=1;tn <= 1<<31 && full.realTime()<=min_time; tn*=2) {
+ for(unsigned int tn=1;tn <= 1U<<31 && full.realTime()<=min_time; tn*=2) {
for(;total<tn;total++) f();
full=t;
}
More information about the Lemon-commits
mailing list