From 24e526ce939e92a95d236b422e3feaa46ee8d187 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Sun, 25 Jan 2009 02:17:15 +0000 Subject: [PATCH] Revert unintended change --- libtorrent/bindings/python/src/converters.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtorrent/bindings/python/src/converters.cpp b/libtorrent/bindings/python/src/converters.cpp index 7f207f2e8..cae84be75 100755 --- a/libtorrent/bindings/python/src/converters.cpp +++ b/libtorrent/bindings/python/src/converters.cpp @@ -9,7 +9,7 @@ using namespace boost::python; template struct pair_to_tuple { - static PyObject* convert(const std::pair& p) + static PyObject* convert(const std::pair& p) { return incref(make_tuple(p.first, p.second).ptr()); }