2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 05:22:45 +00:00

avoid (incorrect) Tru64 cxx 6.5.1 warning

[SVN r19445]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2003-08-04 20:54:07 +00:00
parent 07c1319b99
commit 9217a6a253

View File

@@ -43,7 +43,11 @@ extern PyTypeObject function_type;
function::function(
py_function const& implementation
#if BOOST_WORKAROUND(__EDG_VERSION__, == 245)
, python::detail::keyword const* names_and_defaults
#else
, python::detail::keyword const* const names_and_defaults
#endif
, unsigned num_keywords
)
: m_fn(implementation)