@@ -36,7 +36,7 @@ static auto const fun_1 = c2py::dispatcher_f_kw_t{c2py::cfun([](short x) { retur
3636static auto const fun_2 = c2py::dispatcher_f_kw_t {c2py::cfun ([](int x) { return identity_int32 (x); }, " x" )};
3737
3838// identity_int64
39- static auto const fun_3 = c2py::dispatcher_f_kw_t {c2py::cfun ([](long x) { return identity_int64 (x); }, " x" )};
39+ static auto const fun_3 = c2py::dispatcher_f_kw_t {c2py::cfun ([](long long x) { return identity_int64 (x); }, " x" )};
4040
4141// identity_uint16
4242static auto const fun_4 = c2py::dispatcher_f_kw_t {c2py::cfun ([](unsigned short x) { return identity_uint16 (x); }, " x" )};
@@ -45,7 +45,7 @@ static auto const fun_4 = c2py::dispatcher_f_kw_t{c2py::cfun([](unsigned short x
4545static auto const fun_5 = c2py::dispatcher_f_kw_t {c2py::cfun ([](unsigned int x) { return identity_uint32 (x); }, " x" )};
4646
4747// identity_uint64
48- static auto const fun_6 = c2py::dispatcher_f_kw_t {c2py::cfun ([](unsigned long x) { return identity_uint64 (x); }, " x" )};
48+ static auto const fun_6 = c2py::dispatcher_f_kw_t {c2py::cfun ([](unsigned long long x) { return identity_uint64 (x); }, " x" )};
4949
5050static const auto doc_d_0 = fun_0.doc(R"DOC( )DOC" );
5151static const auto doc_d_1 = fun_1.doc(R"DOC( )DOC" );
@@ -54,7 +54,6 @@ static const auto doc_d_3 = fun_3.doc(R"DOC()DOC");
5454static const auto doc_d_4 = fun_4.doc(R"DOC( )DOC" );
5555static const auto doc_d_5 = fun_5.doc(R"DOC( )DOC" );
5656static const auto doc_d_6 = fun_6.doc(R"DOC( )DOC" );
57-
5857// --------------------- module function table -----------------------------
5958
6059static PyMethodDef module_methods[] = {
0 commit comments