Opened 15 years ago
Closed 13 years ago
#1516 closed Bugs (fixed)
[python] Failing VC9 regression tests
Reported by: | Owned by: | Dave Abrahams | |
---|---|---|---|
Milestone: | To Be Determined | Component: | python USE GITHUB |
Version: | Boost Development Trunk | Severity: | Problem |
Keywords: | Cc: |
Description
A number of the python regression tests are failing with 'ambiguous call to overloaded function' errors when run on VC9 - e.g. http://tinyurl.com/2ewdwo
These tests build successfully if i either extend the SUNPRO workaround to be used for VC9:
#if BOOST_WORKAROUND(__SUNPRO_CC, BOOST_TESTED_AT(0x580)) || BOOST_WORKAROUND(BOOST_MSVC, == 1500)
or change the make_tuple calls to use the full namespace. for example line 47 of args.cpp:
boost::python::tuple raw_func(tuple args, dict kw) { return boost::python::make_tuple(args, kw); }
Change History (2)
comment:1 by , 15 years ago
comment:2 by , 13 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
This was fixed ages ago - marking as such.
Note:
See TracTickets
for help on using tickets.
This has been fixed now, so i guess the ticket can be closed.