Skip to content
Snippets Groups Projects
Commit ae5d38a9 authored by Stéphane Albert's avatar Stéphane Albert
Browse files

COMP: Fixed shadowing warning in Debug mode.

parent be9c16ee
No related branches found
No related tags found
No related merge requests found
......@@ -318,7 +318,7 @@ private slots:
};
#if OTB_DEBUG
inline void trace( const std::vector< std::string > & );
inline void trace( const StringVector & );
#endif
} // end namespace 'mvd'.
......@@ -936,10 +936,8 @@ StackedLayerModel
inline
void
trace( const std::vector< std::string > & strv )
trace( const StringVector & strv )
{
typedef std::vector< std::string > StringVector;
qDebug() << "{";
for( StringVector::const_iterator it( strv.begin() );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment