| 165 | #endif |
| 166 | |
| 167 | int main() |
| 168 | { |
| 169 | std::cout << "\nJMESPath examples\n\n"; |
| 170 | search_example(); |
| 171 | jmespath_expression_example(); |
| 172 | let_example(); |
| 173 | expression_with_params_example(); |
| 174 | |
| 175 | #if defined(_MSC_VER) |
| 176 | query_json_lines_in_parallel(); |
| 177 | #endif |
| 178 | |
| 179 | std::cout << "\n"; |
| 180 | } |
| 181 |
nothing calls this directly
no test coverage detected