| 1079 | }; |
| 1080 | |
| 1081 | inline bool stackHasKeyValuePair(const std::vector<std::pair<std::string, std::string>>& stack, |
| 1082 | const std::string& key, const std::string& value) |
| 1083 | { |
| 1084 | auto it = std::find(stack.begin(), stack.end(), std::make_pair(key, value)); |
| 1085 | return it != stack.end(); |
| 1086 | } |
| 1087 | |
| 1088 | inline bool stackHasKey(const std::vector<std::pair<std::string, std::string>>& stack, |
| 1089 | const std::string& key) |
no test coverage detected