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

Compare commits

...

5 Commits

Author SHA1 Message Date
Jonathan Turkanis
b5ced485e1 Branch for Iostreams development
[SVN r42144]
2007-12-18 20:08:11 +00:00
Ralf W. Grosse-Kunstleve
03a72363a4 undo revision 41404; see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34238
[SVN r41986]
2007-12-12 05:39:45 +00:00
Jürgen Hunold
38cc1a0c15 Add cosmetic virtual detructors to silence compile warnings.
[SVN r41650]
2007-12-03 18:51:26 +00:00
Jürgen Hunold
ff44521920 Silence unused paramter warning in release mode.
[SVN r41649]
2007-12-03 18:47:17 +00:00
Jürgen Hunold
0ac7e3f858 Revert revisions 41544 and 41549.
See http://lists.boost.org/Archives/boost/2007/12/131116.php for details.


[SVN r41577]
2007-12-02 11:51:08 +00:00
2 changed files with 3 additions and 8 deletions

View File

@@ -32,7 +32,7 @@ struct implicit
arg_from_python<Source> get_source(obj);
bool convertible = get_source.convertible();
BOOST_ASSERT(convertible);
BOOST_VERIFY(convertible);
new (storage) Target(get_source());

View File

@@ -565,11 +565,7 @@ BOOST_PYTHON_DECL void add_to_namespace(
}
namespace detail
/* Cannot be anonymous namespace:
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34094
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34229
*/
namespace
{
struct bind_return
{
@@ -614,8 +610,7 @@ extern "C"
function_call(PyObject *func, PyObject *args, PyObject *kw)
{
PyObject* result = 0;
handle_exception(
detail::bind_return(result, static_cast<function*>(func), args, kw));
handle_exception(bind_return(result, static_cast<function*>(func), args, kw));
return result;
}