
2 May
2012
2 May
'12
12:25 a.m.
The type yielded by boost::uint_t<N>::fast seems pretty clear: "The
easiest-to-manipulate, built-in, unsigned integral type with at least N
bits."
But when I run the following program, which prints the number of bits in
the type returned by boost::uint_t<65>::fast (i.e., a type with at least
65 bits), I get 64.
#include <iostream>
#include <climits>
#include