Top "Offsetof" questions

Anything related to the C and C++ `offsetof` macro.

Determining struct member byte-offsets at compile-time?

I want to find the byte offset of a struct member at compile-time. For example: struct vertex_t { vec3_t …

c++ struct offset compile-time offsetof
C++ Compile-Time offsetof inside a template

I have the need to use offsetof from a template with a member selector. I've come up with a way, …

c++ c++11 typetraits offsetof