| 8487 | return ( resultType & ResultWas::FailureBit ) == 0; |
| 8488 | } |
| 8489 | bool isJustInfo( int flags ) { |
| 8490 | return flags == ResultWas::Info; |
| 8491 | } |
| 8492 | |
| 8493 | ResultDisposition::Flags operator | ( ResultDisposition::Flags lhs, ResultDisposition::Flags rhs ) { |
| 8494 | return static_cast<ResultDisposition::Flags>( static_cast<int>( lhs ) | static_cast<int>( rhs ) ); |
nothing calls this directly
no outgoing calls
no test coverage detected