A boolean type normally follows the smallest unit of addressable memory of the target machine (i.e. usually the 8bits byte).
Access to memory is always in "chunks" (multiple of words, this is for efficiency at the hardware level, bus transactions): a boolean bit cannot be addressed "alone" in most CPU systems. Of course, once the data is contained in a register, there are often specialized instructions to manipulate bits independently.
For this reason, it is quite common to use techniques of "bit packing" in order to increase efficiency in using "boolean" base data types. A technique such as enum (in C) with power of 2 coding is a good example. The same sort of trick is found in most languages.
Updated: Thanks to a excellent discussion, it was brought to my attention that sizeof(char)==1 by definition in C++. Hence, addressing of a "boolean" data type is pretty tied to the smallest unit of addressable memory (reinforces my point).
sizeof(bool)would be 4. I could swear that msvc had 32-bit bools, but I just tried and it doesn't. – avakar Jan 14 '10 at 16:19vector<bool>isn't that it tries to be clever and pack bools into bits, but that it tries to do this and disguise itself as a STL container. A plain bitset would have been fine as long as it doesn't also pretend to be a STL container. – jalf Jan 14 '10 at 17:08booldata type with the WindowsBOOLtype which is typedefed tolong. Sosizeof(bool) != sizeof(BOOL), which I'm sure causes a lot of confusion (and probably a fair number of bugs). Particularly since there are alsobooleanandBOOLEANtypedefs in Windows, which are aliases forunsigned char. Also, note that while it's common forboolto be 1 byte, the C++ standard has a note that specifically indicates thatsizeof(bool)can be larger. – Michael Burr Jan 15 '10 at 4:10