blob: 58686c3c36f4426f109e3c89a6b6ed2e2e8ccb70 (
plain)
1
2
3
4
5
6
7
8
|
// <sys/timex.h> was causing a segfault when compiled in C++ mode because
// versioner was trying to mangle the name of an unnamed bitfield.
struct foo {
int : 32;
int : 32;
int : 32;
int : 32;
};
|