Remove BOOST_AUTO from terminalframebuffer.cc
This commit is contained in:
committed by
Keith Winstein
parent
5904d4f5e6
commit
87a5f86794
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user