| 43 | } |
| 44 | |
| 45 | header::header(const header& other) { |
| 46 | if (!other.raw_.empty()) { |
| 47 | raw_.assign(other.raw_.begin(), other.raw_.end()); |
| 48 | reassign_fields(other); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | header& header::operator=(const header& other) { |
| 53 | if (!other.raw_.empty()) { |
no test coverage detected