Remove boost::lambda from ConditionalOverlayCell::get_validity

This commit is contained in:
Keegan McAllister
2012-03-14 04:04:57 -04:00
committed by Keith Winstein
parent 83694977a7
commit 8f099cafbb
2 changed files with 10 additions and 4 deletions
+6
View File
@@ -96,6 +96,12 @@ namespace Terminal {
|| ( (contents.size() == 1) && ( (contents.front() == 0x20)
|| (contents.front() == 0xA0) ) ) );
}
bool contents_match ( const Cell& other ) const
{
return ( is_blank() && other.is_blank() )
|| ( contents == other.contents );
}
};
class Row {