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
@@ -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 );