| 159 | padding operator+(const padding& p) { return padding(count + p.count, length + p.length); } |
| 160 | |
| 161 | friend bool operator==(const padding& lhs, const padding& rhs) { |
| 162 | return lhs.count == rhs.count && lhs.length == rhs.length; |
| 163 | } |
| 164 | }; |
| 165 | |
| 166 | inline padding count_padding(const std::string& base, const std::vector<std::string>& fills) { |
nothing calls this directly
no outgoing calls
no test coverage detected