Skip to content

Commit

Permalink
fix warning for release build (#6976)
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed May 11, 2018
1 parent c6bec0c commit d36d4f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/quickgui/app/main.cpp
Expand Up @@ -71,6 +71,7 @@ int main( int argc, char *argv[] )
const QList<QQmlError> errors = component.errors();
for ( const QQmlError &error : errors )
{
Q_UNUSED( error );
QgsDebugMsg( error.toString() );
}
QgsDebugMsg( QStringLiteral( "****************************************" ) );
Expand All @@ -89,4 +90,3 @@ int main( int argc, char *argv[] )

return app.exec();
}

0 comments on commit d36d4f8

Please sign in to comment.