Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
e7f9ab53
Commit
e7f9ab53
authored
Jan 07, 2013
by
Mukund Sivaraman
Browse files
[2432] Use prefix operator++
parent
35d02013
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/lib/dns/rrset_collection.h
View file @
e7f9ab53
...
...
@@ -142,7 +142,7 @@ protected:
virtual
IterPtr
getNext
()
{
CollectionMap
::
iterator
it
=
iter_
;
it
++
;
++
it
;
return
(
RRsetCollectionBase
::
IterPtr
(
new
DnsIter
(
it
)));
}
...
...
src/lib/dns/tests/rrset_collection_unittest.cc
View file @
e7f9ab53
...
...
@@ -201,7 +201,7 @@ protected:
virtual
IterPtr
getNext
()
{
MyCollection
::
iterator
it
=
iter_
;
it
++
;
++
it
;
return
(
RRsetCollectionBase
::
IterPtr
(
new
MyIter
(
it
)));
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment