* gdb.cp/member-ptr.cc (class Padding): Make contents public.

This commit is contained in:
Daniel Jacobowitz 2007-01-12 20:15:47 +00:00
parent a454209dbc
commit 2f12c31222
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2007-01-12 Daniel Jacobowitz <dan@codesourcery.com>
* gdb.cp/member-ptr.cc (class Padding): Make contents public.
2007-01-11 Vladimir Prus <vladimir@codesourcery.com>
* gdb.mi/mi-var-cp.cc (reference_update_tests):

View File

@ -86,6 +86,7 @@ typedef int A::*PMI;
added twice - otherwise it would be 2 * 0 == 0. */
class Padding
{
public:
int spacer;
virtual int vspacer();
};