| 307 | } |
| 308 | |
| 309 | bool DirectivesGroup::compare(DirectivesGroup const& other) const { |
| 310 | if (m_count != other.m_count) |
| 311 | return false; |
| 312 | |
| 313 | if (empty()) |
| 314 | return true; |
| 315 | |
| 316 | return hash() == other.hash(); |
| 317 | } |
| 318 | |
| 319 | void DirectivesGroup::append(Directives const& directives) { |
| 320 | m_directives.emplace_back(directives); |
no test coverage detected