| 154 | size_t length = 0; |
| 155 | |
| 156 | padding() = default; |
| 157 | padding(size_t count, size_t length) : count(count), length(length) {} |
| 158 | |
| 159 | padding operator+(const padding& p) { return padding(count + p.count, length + p.length); } |
nothing calls this directly
no outgoing calls
no test coverage detected