git-svn-id: svn://db.shs.com.ru/pip@825 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2019-06-27 15:40:24 +00:00
parent 865f6fc91e
commit a1d1ed1aa7

View File

@@ -117,7 +117,7 @@ PIVector<PIIntrospectionContainers::TypeInfo> PIIntrospectionContainers::getInfo
std::map<uint, std::string> t = typenames; std::map<uint, std::string> t = typenames;
mutex.unlock(); mutex.unlock();
ret.reserve(t.size()); ret.reserve(t.size());
for (typename std::map<uint, std::string>::const_iterator i = t.cbegin(); i != t.cend(); ++i) { for (typename std::map<uint, std::string>::const_iterator i = t.begin(); i != t.end(); ++i) {
ret.push_back(TypeInfo()); ret.push_back(TypeInfo());
TypeInfo & ti(ret.back()); TypeInfo & ti(ret.back());
_Type & _t(d[i->first]); _Type & _t(d[i->first]);