D
David Rubin
Can bit fields be initialized with an initializer list, particularly if they are
fields of a structure?
struct {
int a : 1;
int b : 3;
int c : 5;
int d : 7;
} foo = {0, 2, 30, 120};
/david
fields of a structure?
struct {
int a : 1;
int b : 3;
int c : 5;
int d : 7;
} foo = {0, 2, 30, 120};
/david