2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 21:45:37 +00:00

[2432] Use prefix operator++

This commit is contained in:
Mukund Sivaraman
2013-01-07 14:34:30 +05:30
parent 35d02013f2
commit e7f9ab5365
2 changed files with 2 additions and 2 deletions

View File

@@ -142,7 +142,7 @@ protected:
virtual IterPtr getNext() {
CollectionMap::iterator it = iter_;
it++;
++it;
return (RRsetCollectionBase::IterPtr(new DnsIter(it)));
}

View File

@@ -201,7 +201,7 @@ protected:
virtual IterPtr getNext() {
MyCollection::iterator it = iter_;
it++;
++it;
return (RRsetCollectionBase::IterPtr(new MyIter(it)));
}