2 // Error: Internal Compiler Error in 2.7.2. & egcs 1.0.0
5 template<int N1, int N2>
7 enum { max = (N1 > N2) ? N1 : N2 };
18 template<class T1, class T2>
24 // NB: if the next line is changed to
25 // n = (T1::n > T2::n) ? T1::n : T2::n
26 // the problem goes away.
28 n = meta_max<T1::n,T2::n>::max