Tag: Pod
Posts of Tag: Pod
Posts of Tag: Pod
Plain Old Data types with private members?
Is Demo a POD type in C++03? struct Demo { private: int x; int y; }; C++03, §9p4: A POD-struct is an aggregate class that has no non-static data members of type non-POD-struct, non-POD-un...Learn MorePodc++c++11