Opened 16 years ago
Last modified 15 years ago
#766 closed Bugs (fixed)
"Bug" in comment — at Initial Version
Reported by: | alexis_wilke | Owned by: | Daryle Walker |
---|---|---|---|
Milestone: | Component: | iostreams | |
Version: | None | Severity: | Cosmetic |
Keywords: | Cc: |
Description
This is very low priority! Hey guys, In this file: http://boost.org/boost/integer.hpp there is the following comment which says '9=unsigned long' and the code says '9=unsigned char'. Should someone get rid of that comment or fix it? // specializatons: 1=long, 2=int, 3=short, 4=signed char, // 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<2> { typedef int least; }; template<> struct int_least_helper<3> { typedef short least; }; template<> struct int_least_helper<4> { typedef signed char least; }; template<> struct int_least_helper<6> { typedef unsigned long least; }; template<> struct int_least_helper<7> { typedef unsigned int least; }; template<> struct int_least_helper<8> { typedef unsigned short least; }; template<> struct int_least_helper<9> { typedef unsigned char least; };
Note:
See TracTickets
for help on using tickets.