27 Apr
27 Apr
1:43 a.m.
Followup: the dillo source doesn't use the 3-argument min, only the 3-argument max, so this bug didn't break anything. Jeremy Henty
diff -pru -- 00_pre/lout/misc.hh 01_post/lout/misc.hh --- 00_pre/lout/misc.hh 2008-04-26 21:42:59.000000000 +0100 +++ 01_post/lout/misc.hh 2008-04-27 00:03:02.000000000 +0100 @@ -20,7 +20,7 @@ template <class T> inline T max (T a, T
template <class T> inline T min (T a, T b, T c) { - return (min (a, max (b, c))); + return (min (a, min (b, c))); } template <class T> inline T max (T a, T b, T c) {
6049
Age (days ago)
6049
Last active (days ago)
3 comments
2 participants
participants (2)
-
jcid@dillo.org
-
onepoint@starurchin.org