Use more appropriate itr dereference operator in SchemaParser destructor

This commit is contained in:
Tristan Penman 2016-04-08 08:29:04 +10:00
parent 40f0f4868c
commit 836f17c827

View File

@ -63,7 +63,7 @@ public:
{
for (ConstraintBuilders::iterator itr = constraintBuilders.begin();
itr != constraintBuilders.end(); ++itr) {
delete (*itr).second;
delete itr->second;
}
}