| 281 | } |
| 282 | |
| 283 | void |
| 284 | SafeOpFlags::OutputSign(std::ostream &out, bool is_signed) const |
| 285 | { |
| 286 | is_signed ? (out << "_s") |
| 287 | : (out << "_u"); |
| 288 | } |
| 289 | |
| 290 | void |
| 291 | SafeOpFlags::OutputOp1(std::ostream &out) const |
nothing calls this directly
no outgoing calls
no test coverage detected