Remove excessive parentheses

There are many more.
This commit is contained in:
John Hood
2016-11-07 00:56:02 -05:00
parent 1ae23b4dcc
commit 3346419724
8 changed files with 23 additions and 18 deletions
+1 -1
View File
@@ -179,5 +179,5 @@ void Emulator::resize( size_t s_width, size_t s_height )
bool Emulator::operator==( Emulator const &x ) const
{
/* dispatcher and user are irrelevant for us */
return ( fb == x.fb );
return fb == x.fb;
}