Remove BOOST_AUTO from terminaloverlay.cc

This commit is contained in:
Keegan McAllister
2012-03-14 02:42:57 -04:00
committed by Keith Winstein
parent 5320fbd346
commit 4152af9c8e
2 changed files with 41 additions and 19 deletions
+6 -2
View File
@@ -112,7 +112,8 @@ namespace Overlay {
public:
int row_num;
vector<ConditionalOverlayCell> overlay_cells;
typedef vector<ConditionalOverlayCell> overlay_cells_t;
overlay_cells_t overlay_cells;
void apply( Framebuffer &fb, uint64_t confirmed_epoch, bool flag ) const;
@@ -155,10 +156,13 @@ namespace Overlay {
char last_byte;
Parser::UTF8Parser parser;
list<ConditionalOverlayRow> overlays;
typedef list<ConditionalOverlayRow> overlays_t;
overlays_t overlays;
list<ConditionalCursorMove> cursors;
typedef ConditionalOverlayRow::overlay_cells_t overlay_cells_t;
uint64_t local_frame_sent, local_frame_acked, local_frame_late_acked;
ConditionalOverlayRow & get_or_make_row( int row_num, int num_cols );