Remove excessive parentheses
There are many more.
This commit is contained in:
@@ -248,6 +248,10 @@ void Dispatcher::OSC_start( const Parser::OSC_Start *act __attribute((unused)) )
|
||||
|
||||
bool Dispatcher::operator==( const Dispatcher &x ) const
|
||||
{
|
||||
return ( params == x.params ) && ( parsed_params == x.parsed_params ) && ( parsed == x.parsed )
|
||||
&& ( dispatch_chars == x.dispatch_chars ) && ( OSC_string == x.OSC_string ) && ( terminal_to_host == x.terminal_to_host );
|
||||
return ( params == x.params )
|
||||
&& ( parsed_params == x.parsed_params )
|
||||
&& ( parsed == x.parsed )
|
||||
&& ( dispatch_chars == x.dispatch_chars )
|
||||
&& ( OSC_string == x.OSC_string )
|
||||
&& ( terminal_to_host == x.terminal_to_host );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user