7
votes
Question on multiple inheritance, virtual base classes, and object size in C++
Mark Santesson's answer is pretty much on the money, but the assertation that there are no vtables is incorrect. You can use g++ -fdump-class-hierarchy to show what's going on. Here's the no virtua …
