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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user