Returns \c true if the program is the same at \p other.
| 348 | |
| 349 | /// Returns \c true if the program is the same at \p other. |
| 350 | bool operator==(const program &other) const |
| 351 | { |
| 352 | return m_program == other.m_program; |
| 353 | } |
| 354 | |
| 355 | /// Returns \c true if the program is different from \p other. |
| 356 | bool operator!=(const program &other) const |
nothing calls this directly
no outgoing calls
no test coverage detected