| 30 | bool operator ==(const fraction<T>& other) const { |
| 31 | return n == other.n && d == other.d; } |
| 32 | bool operator !=(const fraction<T>& other) const { |
| 33 | return !(*this == other); } }; |
| 34 | // vim: cc=60 ts=2 sts=2 sw=2: |
nothing calls this directly
no outgoing calls
no test coverage detected