| 380 | #endif // defined(JSONCONS_HAS_STD_VARIANT) |
| 381 | |
| 382 | int main() |
| 383 | { |
| 384 | std::cout << "\njson traits variant examples\n\n"; |
| 385 | |
| 386 | #if defined(JSONCONS_HAS_STD_VARIANT) |
| 387 | variant_example(); |
| 388 | variant_example4(); |
| 389 | variant_example2(); |
| 390 | variant_example3(); |
| 391 | distinguish_by_type(); |
| 392 | #endif |
| 393 | |
| 394 | std::cout << '\n'; |
| 395 | } |
| 396 |
nothing calls this directly
no test coverage detected