| 642 | } |
| 643 | |
| 644 | inline TProto* Find(int family) const { |
| 645 | TProtoStorage::const_iterator it = P_.find(family); |
| 646 | |
| 647 | if (it == P_.end()) { |
| 648 | return nullptr; |
| 649 | } |
| 650 | |
| 651 | return it->second.Get(); |
| 652 | } |
| 653 | |
| 654 | private: |
| 655 | typedef TAutoPtr<TProto> TProtoRef; |
no test coverage detected