Converted a load of spelt out iterators to auto
This commit is contained in:
parent
7ccf11da29
commit
01a21f67f7
7 changed files with 7 additions and 7 deletions
|
@ -167,7 +167,7 @@ namespace TestCaseTracking {
|
|||
}
|
||||
|
||||
virtual ITrackerPtr findChild( NameAndLocation const& nameAndLocation ) override {
|
||||
Children::const_iterator it = std::find_if( m_children.begin(), m_children.end(), TrackerHasName( nameAndLocation ) );
|
||||
auto it = std::find_if( m_children.begin(), m_children.end(), TrackerHasName( nameAndLocation ) );
|
||||
return( it != m_children.end() )
|
||||
? *it
|
||||
: nullptr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue