Opened 11 years ago
Closed 11 years ago
#5805 closed Bugs (fixed)
Misspelling of defines in Boost::Python
Reported by: | Owned by: | Ralf W. Grosse-Kunstleve | |
---|---|---|---|
Milestone: | To Be Determined | Component: | python USE GITHUB |
Version: | Boost 1.47.0 | Severity: | Problem |
Keywords: | Cc: |
Description
There are multiple misspellings of the defines listed in the Boost::Python configuration documentation in the code (searching for "SYG" which should probably be "SIG"):
python/detail/make_keyword_range_fn.hpp 60:#if !defined( BOOST_PYTHON_NO_PY_SIGNATURES) && defined( BOOST_PYTHON_PY_SYGNATURES_PROPER_INIT_SELF_TYPE) python/object/make_holder.hpp 15:#if !defined( BOOST_PYTHON_NO_PY_SIGNATURES) && defined( BOOST_PYTHON_PY_SYGNATURES_PROPER_INIT_SELF_TYPE) 84:#if !defined( BOOST_PYTHON_NO_PY_SIGNATURES) && defined( BOOST_PYTHON_PY_SYGNATURES_PROPER_INIT_SELF_TYPE) python/object/class_metadata.hpp 241:#ifndef BOOST_PYTHON_NO_PY_SYGNATURES 258:#ifndef BOOST_PYTHON_NO_PY_SYGNATURES 273:#ifndef BOOST_PYTHON_NO_PY_SYGNATURES
Note:
See TracTickets
for help on using tickets.
Fixed with svn trunk rev. 74021.
Thanks for pointing this out!