| 119 | |
| 120 | static bool isInSet(const char* token, const QSet<QString>& set) { return set.contains(QString(token)); } |
| 121 | static bool isInArray(const char* token, const char* const* arr, int count) |
| 122 | { |
| 123 | for (int i = 0; i < count; ++i) if (strcmp(token, arr[i]) == 0) return true; |
| 124 | return false; |
| 125 | } |
| 126 | |
| 127 | } |
| 128 |
no outgoing calls
no test coverage detected