Style cleanup: "foo &x", not "foo& x"

This commit is contained in:
Geoffrey Thomas
2013-08-03 17:34:48 -07:00
committed by John Hood
parent 9e9919c941
commit aeffb71cfc
7 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -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 );
+1 -1
View File
@@ -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 );