fix for VS2008

This commit is contained in:
Guenter Obiltschnig 2015-08-03 07:33:37 +02:00
parent 8fd28947b9
commit ba946fc592

View File

@ -320,7 +320,11 @@ inline const Dynamic::Var& Object::getValue(ValueMap::const_iterator& it) const
inline const Dynamic::Var& Object::getValue(KeyPtrList::const_iterator& it) const
{
return _values.at(**it);
ValueMap::const_iterator itv = _values.find(**it);
if (itv != _values.end())
return itv->second;
else
throw Poco::NotFoundException();
}