| 79 | |
| 80 | extern "C" |
| 81 | int |
| 82 | LLVMFuzzerTestOneInput( |
| 83 | const uint8_t* data, size_t size) |
| 84 | { |
| 85 | try |
| 86 | { |
| 87 | string_view sv{reinterpret_cast< |
| 88 | const char*>(data), size}; |
| 89 | fuzz_direct_parse(sv); |
| 90 | } |
| 91 | catch(...) |
| 92 | { |
| 93 | } |
| 94 | return 0; |
| 95 | } |
| 96 | |
| 97 | #endif // !defined(BOOST_DESCRIBE_CXX14) |
nothing calls this directly
no test coverage detected