| 2443 | } |
| 2444 | |
| 2445 | auto operator|(Access const & a, Access const & b) -> Access |
| 2446 | { |
| 2447 | return Access{.stages = a.stages | b.stages, .type = a.type | b.type}; |
| 2448 | } |
| 2449 | |
| 2450 | auto operator&(Access const & a, Access const & b) -> Access |
| 2451 | { |
nothing calls this directly
no outgoing calls
no test coverage detected