Skip to content

Commit 854dc93

Browse files
committed
update integration_test amalgamation
1 parent da191f8 commit 854dc93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/litgen/integration_tests/mylib_amalgamation/mylib_amalgamation.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1332,7 +1332,7 @@ The following options are set in the Litgen configuration to add custom bindings
13321332
13331333
13341334
```python
1335-
options.custom_bindings.add_custom_code_to_class(
1335+
options.custom_bindings.add_custom_bindings_to_class(
13361336
qualified_class="RootCustom::Foo",
13371337
stub_code='''
13381338
def get_value(self) -> int:
@@ -1347,7 +1347,7 @@ The following options are set in the Litgen configuration to add custom bindings
13471347
LG_CLASS.def("set_value", [](RootCustom::Foo& self, int value){ self.mValue = value; });
13481348
""",
13491349
)
1350-
options.custom_bindings.add_custom_code_to_submodule(
1350+
options.custom_bindings.add_custom_bindings_to_submodule(
13511351
qualified_namespace="RootCustom",
13521352
stub_code='''
13531353
@staticmethod
@@ -1361,7 +1361,7 @@ The following options are set in the Litgen configuration to add custom bindings
13611361
""",
13621362
)
13631363
1364-
# options.custom_bindings.add_custom_code_to_main_module(
1364+
# options.custom_bindings.add_custom_bindings_to_main_module(
13651365
# stub_code='''
13661366
# def global_function() -> int:
13671367
# """A custom function in the global namespace"""

0 commit comments

Comments
 (0)