From 28d939e617cf0ef8c786b6acf6d8340c4834c77b Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 9 Nov 2005 10:37:10 +0000 Subject: [PATCH] Fixed compile warning. --- examples/osgdepthpartition/DepthPartitionNode.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/osgdepthpartition/DepthPartitionNode.cpp b/examples/osgdepthpartition/DepthPartitionNode.cpp index 663329520..6018db653 100644 --- a/examples/osgdepthpartition/DepthPartitionNode.cpp +++ b/examples/osgdepthpartition/DepthPartitionNode.cpp @@ -9,7 +9,8 @@ CURRENT_CLASS::CURRENT_CLASS() } CURRENT_CLASS::CURRENT_CLASS(const CURRENT_CLASS& dpn, const osg::CopyOp& copyop) - : _active(dpn._active), + : Group(dpn, copyop), + _active(dpn._active), _renderOrder(dpn._renderOrder), _clearColorBuffer(dpn._clearColorBuffer) {