I\'m doing a bit of reading on c++11 and I\'ve noticed a couple things about int type names. Right now, apparently the spec is only available by paying for it but there is a
Yes, it's just a typo on the website. From the FDIS, §18.4.1 (Header <cstdint> synopsis):
namespace std {
...
typedefsigned integer typeintmax_t;
typedefsigned integer typeintptr_t; //optional
...
typedefunsigned integer typeuintmax_t;
typedefunsigned integer typeuintptr_t; //optional
} //namespace std