expanded int_least_helper comment on request of Daryle Walker

[SVN r8815]
This commit is contained in:
Jens Maurer
2001-01-30 21:16:43 +00:00
parent 50bd08d542
commit d2c2e49154

View File

@ -31,6 +31,7 @@ namespace boost
// specializatons: 1=long, 2=int, 3=short, 4=signed char, // specializatons: 1=long, 2=int, 3=short, 4=signed char,
// 6=unsigned long, 7=unsigned int, 8=unsigned short, 9=unsigned long // 6=unsigned long, 7=unsigned int, 8=unsigned short, 9=unsigned long
// no specializations for 0 and 5: requests for a type > long are in error
template<> struct int_least_helper<1> { typedef long least; }; template<> struct int_least_helper<1> { typedef long least; };
template<> struct int_least_helper<2> { typedef int least; }; template<> struct int_least_helper<2> { typedef int least; };
template<> struct int_least_helper<3> { typedef short least; }; template<> struct int_least_helper<3> { typedef short least; };