From 29333d2966e9ba22882358841bf1e7079a299418 Mon Sep 17 00:00:00 2001 From: David Rose Date: Wed, 4 Aug 2004 20:58:32 +0000 Subject: [PATCH] reorder initializers to prevent gcc compiler warning --- panda/src/pgraph/polylightEffect.I | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/panda/src/pgraph/polylightEffect.I b/panda/src/pgraph/polylightEffect.I index b0302464eb..7e0d827493 100755 --- a/panda/src/pgraph/polylightEffect.I +++ b/panda/src/pgraph/polylightEffect.I @@ -35,10 +35,10 @@ PolylightEffect() { //////////////////////////////////////////////////////////////////// INLINE PolylightEffect:: PolylightEffect(const PolylightEffect ©) : -_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) { }