Warning fixes for Clang-3.6

git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@15016 16af8721-9629-0410-8352-f15c8da7e697
This commit is contained in:
Robert Osfield
2015-07-23 11:11:58 +00:00
parent 71c6d27b57
commit 2208303496
31 changed files with 59 additions and 119 deletions

View File

@@ -340,10 +340,11 @@ public:
itr!=parents.end();
++itr)
{
if (typeid(*(*itr))==typeid(osg::Group))
osg::Group* parent = (*itr);
if (typeid(*parent)==typeid(osg::Group))
{
++numGroupsFound;
insertGroup = *itr;
insertGroup = parent;
}
}
if (numGroupsFound==parents.size() && numGroupsFound==1 && insertGroup)