mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-18 14:56:07 +00:00
reorder morkCell member construction to quell Unix warmings.
This commit is contained in:
parent
8e40e54ee8
commit
a209485333
@ -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 ) { }
|
||||
|
@ -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 ) { }
|
||||
|
Loading…
x
Reference in New Issue
Block a user