Skip to content
Snippets Groups Projects
Commit dbe1c9a6 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

fix variable shadowing

parent c338ad39
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -17,7 +17,7 @@ bool XmlContainerParserRegistry::hasAbstraction ( const std::string & container
std::shared_ptr < abstraction::OperationAbstraction > XmlContainerParserRegistry::getAbstraction ( const std::string & container, const std::string & type ) {
std::set < std::string > paramTypes;
if ( alib::namingApi::hasTypes ( type ) )
paramTypes = ext::transform < std::string > ( alib::namingApi::getTypes ( type ), [ ] ( const ext::type_index & type ) { return ext::to_string ( type ); } );
paramTypes = ext::transform < std::string > ( alib::namingApi::getTypes ( type ), [ ] ( const ext::type_index & theType ) { return ext::to_string ( theType ); } );
else
paramTypes.insert ( type );
 
......
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