We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07c1319 commit 9217a6aCopy full SHA for 9217a6a
src/object/function.cpp
@@ -43,7 +43,11 @@ extern PyTypeObject function_type;
43
44
function::function(
45
py_function const& implementation
46
+#if BOOST_WORKAROUND(__EDG_VERSION__, == 245)
47
+ , python::detail::keyword const* names_and_defaults
48
+#else
49
, python::detail::keyword const* const names_and_defaults
50
+#endif
51
, unsigned num_keywords
52
)
53
: m_fn(implementation)
0 commit comments