| 147 | #endif |
| 148 | |
| 149 | int main() |
| 150 | { |
| 151 | try |
| 152 | { |
| 153 | std::cout << "jsoncons version: " << version() << '\n'; |
| 154 | |
| 155 | parse_error_example(); |
| 156 | |
| 157 | parse_with_comment(); |
| 158 | |
| 159 | max_nesting_path_example(); |
| 160 | |
| 161 | using_polymorphic_allocator(); |
| 162 | |
| 163 | parse_with_trailing_commas(); |
| 164 | } |
| 165 | catch (const std::exception& e) |
| 166 | { |
| 167 | std::cout << e.what() << '\n'; |
| 168 | } |
| 169 | |
| 170 | return 0; |
| 171 | } |
nothing calls this directly
no test coverage detected