We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c82c6d commit 66277ebCopy full SHA for 66277eb
1 file changed
cpp_src/jsonparser.cpp
@@ -12,11 +12,12 @@
12
#include <stdexcept>
13
#include <cassert>
14
#include <pybind11/pybind11.h>
15
- #include <pybind11/stl.h>
+#include <pybind11/stl.h>
16
17
namespace py = pybind11;
18
19
20
+// Default function parameter value is ONLY specified in header
21
StreamingJsonParser::StreamingJsonParser(bool strict_mode)
22
: state(START), strict_mode(strict_mode), result(std::make_unique<JsonObject>()) {
23
// Initialize the expected characters for each state
0 commit comments