| 704 | } |
| 705 | |
| 706 | bool Verify(const reflection::Schema &schema, const reflection::Object &root, |
| 707 | const uint8_t *buf, size_t length, uoffset_t max_depth /*= 64*/, |
| 708 | uoffset_t max_tables /*= 1000000*/) { |
| 709 | Verifier v(buf, length, max_depth, max_tables); |
| 710 | return VerifyObject(v, schema, root, flatbuffers::GetAnyRoot(buf), true); |
| 711 | } |
| 712 | |
| 713 | } // namespace flatbuffers |
nothing calls this directly
no test coverage detected