| 175 | } |
| 176 | |
| 177 | std::pair<u256, unsigned> const* StorageOffsets::offset(size_t _index) const |
| 178 | { |
| 179 | if (m_offsets.count(_index)) |
| 180 | return &m_offsets.at(_index); |
| 181 | else |
| 182 | return nullptr; |
| 183 | } |
| 184 | |
| 185 | void MemberList::combine(MemberList const & _other) |
| 186 | { |
no test coverage detected