Skip to content

Commit

Permalink
small fix (function was turned into a method by accident)
Browse files Browse the repository at this point in the history
  • Loading branch information
thelfer committed Dec 21, 2024
1 parent ac55b0f commit 8868ecb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings/python/mfront/TargetsDescription.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ void declareTargetsDescription(pybind11::module_& m) {
auto os = std::ostringstream{};
os << l;
return os.str();
})
.def("describes", mfront::describes);
});
m.def("describes", mfront::describes);
m.def("mergeTargetsDescription", mfront::describes);
}

0 comments on commit 8868ecb

Please sign in to comment.