From 3bed2a7b010bee4f53d81ae733a8f2b2492be8a7 Mon Sep 17 00:00:00 2001 From: AnyOldName3 Date: Sat, 3 Mar 2018 02:01:03 +0000 Subject: [PATCH] Fix some copiler warnings (hopefully) --- components/sceneutil/shadow.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/sceneutil/shadow.hpp b/components/sceneutil/shadow.hpp index 9444591c9..682904650 100644 --- a/components/sceneutil/shadow.hpp +++ b/components/sceneutil/shadow.hpp @@ -32,12 +32,12 @@ namespace SceneUtil protected: bool mEnableShadows; - unsigned int mOutdoorShadowCastingMask; - unsigned int mIndoorShadowCastingMask; - osg::ref_ptr mShadowedScene; osg::ref_ptr mShadowSettings; osg::ref_ptr mShadowTechnique; + + unsigned int mOutdoorShadowCastingMask; + unsigned int mIndoorShadowCastingMask; }; }