| 9993 | return ( resultType & ResultWas::FailureBit ) == 0; |
| 9994 | } |
| 9995 | bool isJustInfo( int flags ) { |
| 9996 | return flags == ResultWas::Info; |
| 9997 | } |
| 9998 | |
| 9999 | ResultDisposition::Flags operator | ( ResultDisposition::Flags lhs, ResultDisposition::Flags rhs ) { |
| 10000 | return static_cast<ResultDisposition::Flags>( static_cast<int>( lhs ) | static_cast<int>( rhs ) ); |
nothing calls this directly
no outgoing calls
no test coverage detected