| 110 | } |
| 111 | |
| 112 | void node_data::compute_map_size() const { |
| 113 | auto it = m_undefinedPairs.begin(); |
| 114 | while (it != m_undefinedPairs.end()) { |
| 115 | auto jt = std::next(it); |
| 116 | if (it->first->is_defined() && it->second->is_defined()) |
| 117 | m_undefinedPairs.erase(it); |
| 118 | it = jt; |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | const_node_iterator node_data::begin() const { |
| 123 | if (!m_isDefined) |
nothing calls this directly
no test coverage detected