Fixed -Wextra warnings

This commit is contained in:
Robert Osfield
2016-06-08 09:07:32 +01:00
parent a16c34208f
commit 8ba7998623
2 changed files with 2 additions and 1 deletions

View File

@@ -58,6 +58,7 @@ CullVisitor::CullVisitor():
}
CullVisitor::CullVisitor(const CullVisitor& rhs):
osg::Object(rhs),
NodeVisitor(rhs),
CullStack(rhs),
_currentStateGraph(NULL),

View File

@@ -225,7 +225,7 @@ LineSegmentIntersector::LineSegmentIntersector(const osg::Vec3d& start, const os
LineSegmentIntersector::LineSegmentIntersector(CoordinateFrame cf, const osg::Vec3d& start, const osg::Vec3d& end,
LineSegmentIntersector* parent, osgUtil::Intersector::IntersectionLimit intersectionLimit):
Intersector(cf, intersectionLimit),
_parent(0),
_parent(parent),
_start(start),
_end(end)
{