GCC permits a C structure to have no members:
struct empty { };
The structure has size zero. In C++, empty structures are part of the language. G++ treats empty structures as if they had a single member of type char
.
© Free Software Foundation
Licensed under the GNU Free Documentation License, Version 1.3.
https://gcc.gnu.org/onlinedocs/gcc-7.3.0/gcc/Empty-Structures.html