GuillaumeDua / CppShelf

Collection of powerfuls - C++ Single-Header Libraries Files
https://guillaumedua.github.io/CppShelf/
MIT License
9 stars 1 forks source link

[ag] inheritance support #234

Open GuillaumeDua opened 2 months ago

GuillaumeDua commented 2 months ago
struct two_fields{ int i; char c; };
struct two_fields_inheritance : two_fields { }; // decomposes into 2 elements, but only 1 name was provided