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

This commit is contained in:
Max Kellermann 2018-01-12 13:02:35 +01:00
parent efb528f979
commit 86c50574d2
1 changed files with 8 additions and 0 deletions

View File

@ -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