Style cleanup: "foo &x", not "foo& x"
This commit is contained in:
committed by
John Hood
parent
9e9919c941
commit
aeffb71cfc
@@ -41,7 +41,7 @@
|
||||
const Parser::StateFamily Parser::family;
|
||||
|
||||
static void append_or_delete( Parser::Action *act,
|
||||
std::list<Parser::Action *>&vec )
|
||||
std::list<Parser::Action *> &vec )
|
||||
{
|
||||
assert( act );
|
||||
|
||||
|
||||
@@ -111,7 +111,7 @@ namespace Terminal {
|
||||
|| (contents.front() == 0xA0) ) ) );
|
||||
}
|
||||
|
||||
bool contents_match ( const Cell& other ) const
|
||||
bool contents_match ( const Cell &other ) const
|
||||
{
|
||||
return ( is_blank() && other.is_blank() )
|
||||
|| ( contents == other.contents );
|
||||
|
||||
Reference in New Issue
Block a user