Constness changes
authorddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
Fri, 10 Apr 2009 07:23:49 +0000 (07:23 +0000)
committerddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
Fri, 10 Apr 2009 07:23:49 +0000 (07:23 +0000)
Signed-off-by: Ray Lehtiniemi <rayl@mail.com>

git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt++@1391 d19143bc-622f-0410-bfdd-b5b2a6649095

mlt++/src/MltProperties.cpp
mlt++/src/MltPushConsumer.cpp

index f1b2b56..4b7dd0e 100644 (file)
@@ -28,7 +28,7 @@ Properties::Properties( ) :
        instance = mlt_properties_new( );
 }
 
-Properties::Properties( bool dummy ) :
+Properties::Properties( bool /*dummy*/ ) :
        instance( NULL )
 {
 }
index 041687f..d8465ba 100644 (file)
@@ -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;
 }