Remove BOOST_AUTO from terminalframebuffer.cc

This commit is contained in:
Keegan McAllister
2012-03-14 01:57:35 -04:00
committed by Keith Winstein
parent 5904d4f5e6
commit 87a5f86794
2 changed files with 18 additions and 9 deletions
+4 -2
View File
@@ -100,7 +100,8 @@ namespace Terminal {
class Row {
public:
std::vector<Cell> cells;
typedef std::vector<Cell> cells_t;
cells_t cells;
Row( size_t s_width, int background_color )
: cells( s_width, Cell( background_color ) )
@@ -217,7 +218,8 @@ namespace Terminal {
class Framebuffer {
private:
std::deque<Row> rows;
typedef std::deque<Row> rows_t;
rows_t rows;
std::deque<wchar_t> icon_name;
std::deque<wchar_t> window_title;
unsigned int bell_count;