From: ddennedy Date: Fri, 10 Apr 2009 07:23:49 +0000 (+0000) Subject: Constness changes X-Git-Url: http://research.m1stereo.tv/gitweb?a=commitdiff_plain;h=2b945741324ce977c7c00ef855e87d142867b550;p=melted Constness changes Signed-off-by: Ray Lehtiniemi git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt++@1391 d19143bc-622f-0410-bfdd-b5b2a6649095 --- diff --git a/mlt++/src/MltProperties.cpp b/mlt++/src/MltProperties.cpp index f1b2b56..4b7dd0e 100644 --- a/mlt++/src/MltProperties.cpp +++ b/mlt++/src/MltProperties.cpp @@ -28,7 +28,7 @@ Properties::Properties( ) : instance = mlt_properties_new( ); } -Properties::Properties( bool dummy ) : +Properties::Properties( bool /*dummy*/ ) : instance( NULL ) { } diff --git a/mlt++/src/MltPushConsumer.cpp b/mlt++/src/MltPushConsumer.cpp index 041687f..d8465ba 100644 --- a/mlt++/src/MltPushConsumer.cpp +++ b/mlt++/src/MltPushConsumer.cpp @@ -85,7 +85,7 @@ void PushConsumer::set_render( int width, int height, double aspect_ratio ) set( "render_aspect_ratio", aspect_ratio ); } -int PushConsumer::connect( Service &service ) +int PushConsumer::connect( Service &/*service*/ ) { return -1; }