mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
detail/init.h: fix the "see above" comments
The "see above" comment being referenced in the code comments isn't "above" anymore; copy the later factory init comment into the first constructor block to fix it.
This commit is contained in:
parent
1fb9df601c
commit
9f6a636e54
@ -168,7 +168,9 @@ template <typename... Args> struct constructor {
|
||||
auto *cl_type = get_type_info(typeid(Cpp<Class>));
|
||||
cl.def("__init__", [cl_type](handle self_, Args... args) {
|
||||
auto v_h = load_v_h(self_, cl_type);
|
||||
if (v_h.instance_registered()) return; // Ignore duplicate __init__ calls (see above)
|
||||
// If this value is already registered it must mean __init__ is invoked multiple times;
|
||||
// we really can't support that in C++, so just ignore the second __init__.
|
||||
if (v_h.instance_registered()) return;
|
||||
|
||||
construct<Class>(v_h, new Cpp<Class>(std::forward<Args>(args)...), false);
|
||||
}, extra...);
|
||||
|
Loading…
Reference in New Issue
Block a user