The standard-layout tag has no wiki summary.
11
votes
6answers
428 views
Why is C++11's POD “standard layout” definition the way it is?
I'm looking into the new, relaxed POD definition in C++11 (section 9.7)
A standard-layout class is a class that:
has no non-static data members of type non-standard-layout class (or array ...
4
votes
4answers
116 views
Wrapping C++ in C: Derived to base conversions
I am wrapping a simple C++ inheritance hierarchy into "object-oriented" C. I'm trying to figure out if there any gotchas in treating the pointers to C++ objects as pointers to opaque C structs. In ...
3
votes
3answers
164 views
Byte-for-byte copies of types in C++11?
The C++11 standard guarantees that byte-for-byte copies are always valid for POD types. But what about certain trivial types?
Here's an example:
struct trivial
{
int x;
int y;
trivial(int i) ...
1
vote
2answers
97 views
Standard layout and non-copyable property
C++11, ยง9/7:
A standard-layout class is a class that:
has no non-static data members of type non-standard-layout class (or array of such types) or reference,
has no virtual functions and ...