2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-30 20:12:37 +00:00

Missing this-> inserted (due to EDG 245 diagnostics)

[SVN r12261]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2002-01-09 21:20:51 +00:00
parent 9923a4c4ff
commit 10a04acf41
2 changed files with 2 additions and 2 deletions

View File

@@ -162,7 +162,7 @@ T unwrap_more_<T>::operator*()
template <class T>
unwrap_<T>::~unwrap_()
{
destroy();
this->destroy();
}
}}} // namespace boost::python::converter

View File

@@ -158,7 +158,7 @@ wrap_<T>::wrap_()
template <class T>
wrap_<T>::~wrap_()
{
destroy();
this->destroy();
}
}}} // namespace boost::python::converter