Fix autovector iterator increment/decrement comments

Summary: The prefix and postfix operators were mixed up in the autovector class.

Test Plan: Inspection

Reviewers: sdong, kailiu

Reviewed By: kailiu

Differential Revision: https://reviews.facebook.net/D21873
This commit is contained in:
Jonah Cohen 2014-08-14 14:56:11 -07:00
parent 58b0f9d890
commit f611935e9a

View File

@ -67,26 +67,26 @@ class autovector {
iterator_impl& operator=(const iterator_impl&) = default;
// -- Advancement
// iterator++
// ++iterator
self_type& operator++() {
++index_;
return *this;
}
// ++iterator
// iterator++
self_type operator++(int) {
auto old = *this;
++index_;
return old;
}
// iterator--
// --iterator
self_type& operator--() {
--index_;
return *this;
}
// --iterator
// iterator--
self_type operator--(int) {
auto old = *this;
--index_;