| 45 | ContFlags(ContFlags const &that) = default; |
| 46 | ContFlags(uint32_t in_flags) : raw_flags(in_flags) {} |
| 47 | void |
| 48 | set_flags(uint32_t new_flags) |
| 49 | { |
| 50 | raw_flags = new_flags; |
| 51 | } |
| 52 | ContFlags & |
| 53 | operator=(ContFlags const &other) |
| 54 | { |
no outgoing calls
no test coverage detected