| 162 | |
| 163 | template<typename A, typename B> |
| 164 | std::pair<B,A> flip_pair(const std::pair<A,B> &p) |
| 165 | { |
| 166 | return std::pair<B,A>(p.second, p.first); |
| 167 | } |
| 168 | |
| 169 | void checkNcError(int error) |
| 170 | { |
nothing calls this directly
no outgoing calls
no test coverage detected