Ticket #4101: boost-python-override-unchecked-20100415.patch.diff

File boost-python-override-unchecked-20100415.patch.diff, 416 bytes (added by anonymous, 13 years ago)
  • boost/python/override.hpp

     
    7777      template <class T>
    7878      T unchecked(type<T>* = 0)
    7979      {
    80           return extract<T>(m_obj)();
     80          return extract<T>(m_obj.get())();
    8181      }
    8282   private:
    8383      mutable handle<> m_obj;