Skip to content

Commit 66277eb

Browse files
committed
chore: comment
1 parent 6c82c6d commit 66277eb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

cpp_src/jsonparser.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@
1212
#include <stdexcept>
1313
#include <cassert>
1414
#include <pybind11/pybind11.h>
15-
#include <pybind11/stl.h>
15+
#include <pybind11/stl.h>
1616

1717
namespace py = pybind11;
1818

1919

20+
// Default function parameter value is ONLY specified in header
2021
StreamingJsonParser::StreamingJsonParser(bool strict_mode)
2122
: state(START), strict_mode(strict_mode), result(std::make_unique<JsonObject>()) {
2223
// Initialize the expected characters for each state

0 commit comments

Comments
 (0)