Qualified checked_delete calls to prevent ADL (reported by Daniel Frey)

[SVN r17636]
This commit is contained in:
Peter Dimov 2003-02-25 13:00:22 +00:00
parent 37a6537a5b
commit 25e8284950

View File

@ -43,7 +43,7 @@ template<class T> struct checked_deleter
void operator()(T * x) const void operator()(T * x) const
{ {
checked_delete(x); boost::checked_delete(x);
} }
}; };
@ -54,7 +54,7 @@ template<class T> struct checked_array_deleter
void operator()(T * x) const void operator()(T * x) const
{ {
checked_array_delete(x); boost::checked_array_delete(x);
} }
}; };