Return the number of times that length() has gone over max_length().
| 193 | |
| 194 | // Return the number of times that length() has gone over max_length(). |
| 195 | size_t length_overages() const { |
| 196 | return length_overages_; |
| 197 | } |
| 198 | |
| 199 | void set_length_overages(size_t new_count) { |
| 200 | length_overages_ = new_count; |