File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/litgen/integration_tests/mylib_amalgamation Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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"""
You can’t perform that action at this time.
0 commit comments