
17 Sep
2009
17 Sep
'09
3:35 p.m.
In response to the other questions,
- should boost::uint32_t be typedefed to the same thing that std::size_t is on 32b platforms?
Most of the time, but doesn't have to be. std::size_t is defined to be the return type of "sizeof".
- Is the size of std::size_t fixed or dependant on the platform it is used on?
Platform Dependant -- Thomas Suckow