Commit 5405ae86 authored by Niels's avatar Niels

added default value

parent b145e0c4
......@@ -8991,7 +8991,7 @@ basic_json_parser_63:
/// current level of recursion
int depth = 0;
/// callback function
const parser_callback_t callback;
const parser_callback_t callback = nullptr;
/// the type of the last read token
typename lexer::token_type last_token = lexer::token_type::uninitialized;
/// the lexer
......
......@@ -8288,7 +8288,7 @@ class basic_json
/// current level of recursion
int depth = 0;
/// callback function
const parser_callback_t callback;
const parser_callback_t callback = nullptr;
/// the type of the last read token
typename lexer::token_type last_token = lexer::token_type::uninitialized;
/// the lexer
......
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