The source project of this merge request has been removed.
[bindings] Turn off Wconversion to avoid BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS warnings
We currently see a ton of warnings when compiling due to implicit conversion from int
to long unsigned int
. We cannot use literals (1l
/1L
) or casting (static_cast<long unsigned int>(1)
) in the macro. This turns all conversion warnings off for the Python bindings.