Skip to content

Commit

Permalink
fix: forgot about additional_symbs_overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
swarnavaghosh04 committed Sep 15, 2024
1 parent 4cf1bc8 commit d039cfb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ static const char* __doc_gr_UTAT_HERON_tagged_stream_fixed_length_padder_get_fin
static const char* __doc_gr_UTAT_HERON_tagged_stream_fixed_length_padder_get_filler =
R"doc()doc";

static const char* __doc_gr_UTAT_HERON_tagged_stream_fixed_length_padder_get_additional_symb_overflow =
R"doc()doc";

static const char* __doc_gr_UTAT_HERON_tagged_stream_fixed_length_padder_set_len_tag_key =
R"doc()doc";

Expand All @@ -44,3 +47,6 @@ static const char* __doc_gr_UTAT_HERON_tagged_stream_fixed_length_padder_set_fin

static const char* __doc_gr_UTAT_HERON_tagged_stream_fixed_length_padder_set_filler =
R"doc()doc";

static const char* __doc_gr_UTAT_HERON_tagged_stream_fixed_length_padder_set_additional_symb_overflow =
R"doc()doc";
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ void bind_tagged_stream_fixed_length_padder(py::module& m)
D(tagged_stream_fixed_length_padder, get_filler)
)

.def(
"get_additional_symb_overflow",
&tagged_stream_fixed_length_padder::get_additional_symb_overflow,
D(tagged_stream_fixed_length_padder, get_additional_symb_overflow)
)

.def(
"set_len_tag_key",
&tagged_stream_fixed_length_padder::set_len_tag_key,
Expand Down

0 comments on commit d039cfb

Please sign in to comment.