| 28 | namespace c2 { |
| 29 | |
| 30 | C2Payload::C2Payload(Operation op, std::string identifier, bool isRaw) |
| 31 | : C2Payload(op, state::UpdateState::FULLY_APPLIED, std::move(identifier), isRaw) { |
| 32 | } |
| 33 | |
| 34 | C2Payload::C2Payload(Operation op, state::UpdateState state, std::string identifier, bool isRaw) |
| 35 | : state::Update(state::UpdateStatus(state, 0)), |
nothing calls this directly
no test coverage detected