URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [parse/] [offsetof2.C] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
#include <cstddef>
struct choke_me
{
int size;
char storage[1];
};
struct offset_is_broken
{
static const int offset = offsetof(choke_me, storage);
};
Go to most recent revision | Compare with Previous | Blame | View Log