Skip to content

Commit

Permalink
clang-tidy compatibility (untested).
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralf W. Grosse-Kunstleve committed Oct 7, 2022
1 parent 06e74d9 commit 62311eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_class.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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>);
Expand Down

0 comments on commit 62311eb

Please sign in to comment.