Fix name of wrapped arguments.

This commit is contained in:
Mikaël Capelle
2022-05-04 21:15:55 +02:00
parent 7c6bbc2980
commit 72750ab4de
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ public:
operator std::string() const { return value; }
};
MO2_PYBIND11_WRAP_ARGUMENT_CASTER(Wrapper, int, std::string);
MO2_PYBIND11_WRAP_ARGUMENT_CASTER(Wrapper, "Wrapper", int, std::string);
template <std::size_t... Is, class Fn>
auto wrap(Fn&& fn)