2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-26 06:42:27 +00:00

Bug fix thanks to Min Xu

[SVN r12849]
This commit is contained in:
Dave Abrahams
2002-02-17 22:29:43 +00:00
parent 8af49161fb
commit b75d11da3a

View File

@@ -205,7 +205,7 @@ namespace
std::vector<entry>::const_iterator p
= boost::detail::lower_bound(start, finish, id);
if (p == finish && p->key != id)
if (p == finish || p->key != id)
{
string report("extension class wrapper for base class ");
(report += id.name()) += " has not been created yet";