@@ -45,8 +45,6 @@ namespace Overlay {
4545 using namespace Terminal ;
4646 using namespace Network ;
4747 using std::deque;
48- using std::list;
49- using std::vector;
5048 using std::wstring;
5149
5250 enum Validity {
@@ -99,8 +97,8 @@ namespace Overlay {
9997 Cell replacement;
10098 bool unknown;
10199
102- vector<Cell> original_contents; /* we don't give credit for correct predictions
103- that match the original contents */
100+ std:: vector<Cell> original_contents; /* we don't give credit for correct predictions
101+ that match the original contents */
104102
105103 void apply ( Framebuffer &fb, uint64_t confirmed_epoch, int row, bool flag ) const ;
106104 Validity get_validity ( const Framebuffer &fb, int row, uint64_t early_ack, uint64_t late_ack ) const ;
@@ -128,7 +126,7 @@ namespace Overlay {
128126 public:
129127 int row_num;
130128
131- typedef vector<ConditionalOverlayCell> overlay_cells_type ;
129+ using overlay_cells_type = std:: vector<ConditionalOverlayCell>;
132130 overlay_cells_type overlay_cells;
133131
134132 void apply ( Framebuffer &fb, uint64_t confirmed_epoch, bool flag ) const ;
@@ -215,13 +213,13 @@ namespace Overlay {
215213 char last_byte;
216214 Parser::UTF8Parser parser;
217215
218- typedef list<ConditionalOverlayRow> overlays_type ;
216+ using overlays_type = std:: list<ConditionalOverlayRow>;
219217 overlays_type overlays;
220218
221- typedef list<ConditionalCursorMove> cursors_type ;
219+ using cursors_type = std:: list<ConditionalCursorMove>;
222220 cursors_type cursors;
223221
224- typedef ConditionalOverlayRow::overlay_cells_type overlay_cells_type;
222+ using overlay_cells_type = ConditionalOverlayRow::overlay_cells_type;
225223
226224 uint64_t local_frame_sent, local_frame_acked, local_frame_late_acked;
227225
0 commit comments