Commit 86c50574 authored by Max Kellermann's avatar Max Kellermann

lib/yajl/Callbacks: add wrappers for start_array and end_array

parent efb528f9
......@@ -70,6 +70,14 @@ struct CallbacksWrapper {
static int EndMap(void *ctx) noexcept {
return Cast(ctx).EndMap();
}
static int StartArray(void *ctx) noexcept {
return Cast(ctx).StartArray();
}
static int EndArray(void *ctx) noexcept {
return Cast(ctx).EndArray();
}
};
} // namespace Yajl
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment