clang-tidy compatibility (untested).

This commit is contained in:
Ralf W. Grosse-Kunstleve 2022-10-07 14:59:13 -07:00
parent 06e74d9d46
commit 62311eb431
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ atyp_valu rtrn_valu() {
return obj;
}
void bind_all(py::module_ m) {
void bind_all(py::module_ &m) {
py::class_<atyp_valu>(m, "atyp_valu")
.def(py::init(&rtrn_valu))
.def("get_mtxt", get_mtxt<atyp_valu>);