Related gcc#50394 pernickety gcc 4.7.0
This commit is contained in:
@@ -178,10 +178,10 @@ private:
|
||||
};
|
||||
|
||||
inline const mapped_type* getRef( key_type nKey ) const
|
||||
{
|
||||
typename container_type::const_iterator aIt = find( nKey );
|
||||
return (aIt == this->end()) ? 0 : &aIt->second;
|
||||
}
|
||||
{
|
||||
typename container_type::const_iterator aIt = this->find( nKey );
|
||||
return (aIt == this->end()) ? 0 : &aIt->second;
|
||||
}
|
||||
};
|
||||
|
||||
// ============================================================================
|
||||
|
Reference in New Issue
Block a user