Skip to content

Commit eba9c68

Browse files
authored
Fix filename to internal name error
1 parent 9384cf9 commit eba9c68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/cpptcl_module_five.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Person *makePerson(string const &name) { return new Person(name); }
2121
// this is a sink function
2222
void killPerson(Person *p) { delete p; }
2323

24-
CPPTCL_MODULE(Cpptcl_module_four, i) {
24+
CPPTCL_MODULE(Cpptcl_module_five, i) {
2525
// note that the Person class is exposed without any constructor
2626
i.class_<Person>("Person", no_init).def("setName", &Person::setName).def("getName", &Person::getName);
2727

0 commit comments

Comments
 (0)