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:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user