2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-26 06:42:27 +00:00

Attempt Sun-5.8 workaround

[SVN r34864]
This commit is contained in:
Dave Abrahams
2006-08-11 00:47:48 +00:00
parent 9ee0d36a1d
commit 88be35ddc2

View File

@@ -14,6 +14,10 @@
using namespace boost::python;
#if BOOST_WORKAROUND(__SUNPRO_CC, BOOST_TESTED_AT(0x580))
using boost::python::make_tuple;
#endif
tuple f(int x = 1, double y = 4.25, char const* z = "wow")
{
return make_tuple(x, y, z);