From 1212a147390338ddbc78a5626dfcfa1990e71eea Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Sat, 4 Jun 2011 09:50:27 +0000 Subject: [PATCH] boost/python/override.hpp: trac issue #4101 [SVN r72384] --- include/boost/python/override.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 include/boost/python/override.hpp diff --git a/include/boost/python/override.hpp b/include/boost/python/override.hpp old mode 100755 new mode 100644 index d5a95b83..39714257 --- a/include/boost/python/override.hpp +++ b/include/boost/python/override.hpp @@ -77,7 +77,7 @@ namespace detail template T unchecked(type* = 0) { - return extract(m_obj)(); + return extract(m_obj.get())(); } private: mutable handle<> m_obj;