tags:

views:

282

answers:

1

Hi

I want to see how g++ lays out memory for classes and virtual tables.

Is there a way to dump this information, using g++'s options?

Thanks

+6  A: 

g++ -fdump-class-hierarchy source_file.cpp

Artem