Return the number of times that length() has gone over max_length().
| 183 | |
| 184 | // Return the number of times that length() has gone over max_length(). |
| 185 | size_t length_overages() const { |
| 186 | return length_overages_; |
| 187 | } |
| 188 | |
| 189 | void set_length_overages(size_t new_count) { |
| 190 | length_overages_ = new_count; |
no outgoing calls
no test coverage detected