Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 655570
Collapse All | Expand All

(-)a/src/prediction/zero_query_dict.h (+11 lines)
Lines 132-137 class ZeroQueryDict { Link Here
132
      return tmp;
132
      return tmp;
133
    }
133
    }
134
134
135
    iterator &operator--() {
136
      ptr_ -= kTokenByteSize;
137
      return *this;
138
    }
139
140
    iterator operator--(int) {
141
      const iterator tmp(ptr_, string_array_);
142
      ptr_ -= kTokenByteSize;
143
      return tmp;
144
    }
145
135
    iterator &operator+=(ptrdiff_t n) {
146
    iterator &operator+=(ptrdiff_t n) {
136
      ptr_ += n * kTokenByteSize;
147
      ptr_ += n * kTokenByteSize;
137
      return *this;
148
      return *this;

Return to bug 655570