reorder morkCell member construction to quell Unix warmings.

This commit is contained in:
davidmc%netscape.com 1999-04-19 22:12:14 +00:00
parent 8e40e54ee8
commit a209485333
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ public:
morkAtom* mCell_Atom; // content in this cell
public:
morkCell() : mCell_Atom( 0 ), mCell_Delta( 0 ) { }
morkCell() : mCell_Delta( 0 ), mCell_Atom( 0 ) { }
morkCell(const morkCell& c)
: mCell_Atom( c.mCell_Atom ), mCell_Delta( c.mCell_Delta ) { }

View File

@ -39,7 +39,7 @@ public:
morkAtom* mCell_Atom; // content in this cell
public:
morkCell() : mCell_Atom( 0 ), mCell_Delta( 0 ) { }
morkCell() : mCell_Delta( 0 ), mCell_Atom( 0 ) { }
morkCell(const morkCell& c)
: mCell_Atom( c.mCell_Atom ), mCell_Delta( c.mCell_Delta ) { }