Commit 271b27ff by Jason Rhinelander

Remove obsolete comment

parent 083a0219
...@@ -313,9 +313,6 @@ void initialize_inherited_virtuals(py::module &m) { ...@@ -313,9 +313,6 @@ void initialize_inherited_virtuals(py::module &m) {
test_initializer virtual_functions([](py::module &m) { test_initializer virtual_functions([](py::module &m) {
/* Important: indicate the trampoline class PyExampleVirt using the third
argument to py::class_. The second argument with the unique pointer
is simply the default holder type used by pybind11. */
py::class_<ExampleVirt, PyExampleVirt>(m, "ExampleVirt") py::class_<ExampleVirt, PyExampleVirt>(m, "ExampleVirt")
.def(py::init<int>()) .def(py::init<int>())
/* Reference original class in function definitions */ /* Reference original class in function definitions */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment