From 10a04acf418f39cca5f046d5456699c7200f8045 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Wed, 9 Jan 2002 21:20:51 +0000 Subject: [PATCH] Missing this-> inserted (due to EDG 245 diagnostics) [SVN r12261] --- include/boost/python/converter/unwrap.hpp | 2 +- include/boost/python/converter/wrap.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/python/converter/unwrap.hpp b/include/boost/python/converter/unwrap.hpp index ffd0f081..525f1bb0 100644 --- a/include/boost/python/converter/unwrap.hpp +++ b/include/boost/python/converter/unwrap.hpp @@ -162,7 +162,7 @@ T unwrap_more_::operator*() template unwrap_::~unwrap_() { - destroy(); + this->destroy(); } }}} // namespace boost::python::converter diff --git a/include/boost/python/converter/wrap.hpp b/include/boost/python/converter/wrap.hpp index ec87f73d..97d7b8de 100644 --- a/include/boost/python/converter/wrap.hpp +++ b/include/boost/python/converter/wrap.hpp @@ -158,7 +158,7 @@ wrap_::wrap_() template wrap_::~wrap_() { - destroy(); + this->destroy(); } }}} // namespace boost::python::converter