Bit manipulation:
*
Set all bits
x = -1; // -1 == 1111 1111 ... 1111b
(See here for an explanation of why this works and is actually the best approach.)
std::bitset<10> x;
x.set(); // Sets all bits to '1'