| 584 | // =================================================================== |
| 585 | |
| 586 | void ExtensionSet::Clear() { |
| 587 | for (map<int, Extension>::iterator iter = extensions_.begin(); |
| 588 | iter != extensions_.end(); ++iter) { |
| 589 | iter->second.Clear(); |
| 590 | } |
| 591 | } |
| 592 | |
| 593 | void ExtensionSet::MergeFrom(const ExtensionSet& other) { |
| 594 | for (map<int, Extension>::const_iterator iter = other.extensions_.begin(); |
no test coverage detected