| Index: cc/quads/list_container.h
|
| diff --git a/cc/quads/list_container.h b/cc/quads/list_container.h
|
| index 24c24ac86ddbb9e11199ab689d0bbb5b3e81d505..a61a6e0cb3d2f1701174ac6a9a9b0ff36b1000cd 100644
|
| --- a/cc/quads/list_container.h
|
| +++ b/cc/quads/list_container.h
|
| @@ -78,9 +78,9 @@ class CC_EXPORT ListContainer {
|
| size_t index);
|
| ~Iterator();
|
| BaseElementType* operator->() const;
|
| - BaseElementType& operator*() const;
|
| + BaseElementType* operator*() const;
|
| Iterator operator++(int unused_post_increment);
|
| - Iterator operator++();
|
| + Iterator& operator++();
|
|
|
| size_t index() const;
|
|
|
| @@ -103,9 +103,9 @@ class CC_EXPORT ListContainer {
|
| ConstIterator(const Iterator& other); // NOLINT
|
| ~ConstIterator();
|
| const BaseElementType* operator->() const;
|
| - const BaseElementType& operator*() const;
|
| + const BaseElementType* operator*() const;
|
| ConstIterator operator++(int unused_post_increment);
|
| - ConstIterator operator++();
|
| + ConstIterator& operator++();
|
|
|
| size_t index() const;
|
|
|
| @@ -128,9 +128,9 @@ class CC_EXPORT ListContainer {
|
| size_t index);
|
| ~ReverseIterator();
|
| BaseElementType* operator->() const;
|
| - BaseElementType& operator*() const;
|
| + BaseElementType* operator*() const;
|
| ReverseIterator operator++(int unused_post_increment);
|
| - ReverseIterator operator++();
|
| + ReverseIterator& operator++();
|
|
|
| size_t index() const;
|
|
|
| @@ -154,9 +154,9 @@ class CC_EXPORT ListContainer {
|
| ConstReverseIterator(const ReverseIterator& other); // NOLINT
|
| ~ConstReverseIterator();
|
| const BaseElementType* operator->() const;
|
| - const BaseElementType& operator*() const;
|
| + const BaseElementType* operator*() const;
|
| ConstReverseIterator operator++(int unused_post_increment);
|
| - ConstReverseIterator operator++();
|
| + ConstReverseIterator& operator++();
|
|
|
| size_t index() const;
|
|
|
|
|