Skip to content

Commit

Permalink
is this the problem?
Browse files Browse the repository at this point in the history
  • Loading branch information
mmomtchev committed Dec 29, 2023
1 parent 992984a commit c6ffb7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tests/qualifiers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ NOBIND_MODULE(qualifiers, m) {
.def<&Qualified::get3, Nobind::ReturnAsync>("get3Async")
.def<&Qualified::static_get4, Nobind::ReturnAsync>("get4Async");

m.def<GlobalQualified>("globalQualified");
m.def<GlobalQualified, Nobind::ReturnAsync>("globalQualifiedAsync");
m.def<&GlobalQualified>("globalQualified");
m.def<&GlobalQualified, Nobind::ReturnAsync>("globalQualifiedAsync");
}

0 comments on commit c6ffb7d

Please sign in to comment.