| 36 | typedef unsigned SeqLen; |
| 37 | |
| 38 | bool sequences_are_not_equal(const Airports& a, const Airports& b) |
| 39 | { |
| 40 | const SeqLen len = a.length(); |
| 41 | if (len != b.length()) { |
| 42 | return true; |
| 43 | } |
| 44 | for (SeqLen i = 0; i < len; ++i) { |
| 45 | if (strcmp(a[i], b[i])) { |
| 46 | return true; |
| 47 | } |
| 48 | } |
| 49 | return false; |
| 50 | } |
| 51 | |
| 52 | class LocationInfoWrapper { |
| 53 | public: |
no test coverage detected