Related gcc#50394 pernickety gcc 4.7.0

This commit is contained in:
Caolán McNamara
2011-09-15 16:59:30 +01:00
parent 346849d646
commit 87891c1c8b

View File

@@ -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;
}
};
// ============================================================================