mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-25 14:45:12 +00:00
clang-tidy compatibility (untested).
This commit is contained in:
parent
06e74d9d46
commit
62311eb431
@ -56,7 +56,7 @@ atyp_valu rtrn_valu() {
|
|||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
void bind_all(py::module_ m) {
|
void bind_all(py::module_ &m) {
|
||||||
py::class_<atyp_valu>(m, "atyp_valu")
|
py::class_<atyp_valu>(m, "atyp_valu")
|
||||||
.def(py::init(&rtrn_valu))
|
.def(py::init(&rtrn_valu))
|
||||||
.def("get_mtxt", get_mtxt<atyp_valu>);
|
.def("get_mtxt", get_mtxt<atyp_valu>);
|
||||||
|
Loading…
Reference in New Issue
Block a user