vote up 1 vote down star

In:

struct foo {
  unsigned bar : 2;
};

What does the ': 2' do?

flag

It helps you to avoid ugly padding in some cases :) – Tim Post Nov 4 at 17:15

1 Answer

vote up 14 vote down check

It declares a bit field. The number specifies the size of that member in bits.

link|flag
+1 - best answer. – Tim Post Nov 4 at 17:16
Thanks, it makes sense now :). – Sverre Rabbelier Nov 4 at 17:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.