reorder initializers to prevent gcc compiler warning

This commit is contained in:
David Rose 2004-08-04 20:58:32 +00:00
parent d267dbe9bb
commit 29333d2966

View File

@ -35,10 +35,10 @@ PolylightEffect() {
////////////////////////////////////////////////////////////////////
INLINE PolylightEffect::
PolylightEffect(const PolylightEffect &copy) :
_lightgroup(copy._lightgroup),
_effect_center(copy._effect_center),
_contribution_type(copy._contribution_type),
_weight(copy._weight)
_contribution_type(copy._contribution_type),
_weight(copy._weight),
_lightgroup(copy._lightgroup),
_effect_center(copy._effect_center)
{
}