| 137 | } |
| 138 | |
| 139 | bool operator==(const ExtensionSpec& other) const { |
| 140 | return id_ == other.id_ && |
| 141 | affected_components_ == other.affected_components_ && |
| 142 | version() == other.version(); |
| 143 | } |
| 144 | |
| 145 | bool operator!=(const ExtensionSpec& other) const { |
| 146 | return !operator==(other); |