* Comparison operators (!=) */
| 141 | * Comparison operators (!=) |
| 142 | */ |
| 143 | bool operator!=(const BSplineBasis1D &lhs, const BSplineBasis1D &rhs) |
| 144 | { |
| 145 | return !(lhs == rhs); |
| 146 | } |
| 147 | |
| 148 | bool operator!=(const DataPoint &lhs, const DataPoint &rhs) |
| 149 | { |
nothing calls this directly
no outgoing calls
no test coverage detected