From 82cd2d4515e89dc531887576fe3b00a4823d74e1 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 8 Jun 2016 11:40:51 +0100 Subject: [PATCH] Fixed unused parameter warning. --- examples/osgposter/PosterPrinter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/osgposter/PosterPrinter.cpp b/examples/osgposter/PosterPrinter.cpp index 1f949724a..5d9b137a7 100644 --- a/examples/osgposter/PosterPrinter.cpp +++ b/examples/osgposter/PosterPrinter.cpp @@ -321,7 +321,7 @@ void PosterPrinter::frame( const osg::FrameStamp* fs, osg::Node* node ) } } -bool PosterPrinter::addCullCallbacks( const osg::FrameStamp* fs, osg::Node* node ) +bool PosterPrinter::addCullCallbacks( const osg::FrameStamp* fs, osg::Node* /*node*/ ) { if ( !_visitor->inQueue() || done() ) return false; @@ -335,7 +335,7 @@ bool PosterPrinter::addCullCallbacks( const osg::FrameStamp* fs, osg::Node* node return true; } -void PosterPrinter::removeCullCallbacks( osg::Node* node ) +void PosterPrinter::removeCullCallbacks( osg::Node* /*node*/ ) { _visitor->setAddingCallbacks( false ); _camera->accept( *_visitor );