Modernize all typedefs with using statements

This commit is contained in:
Alex Chernyakhovsky
2023-07-30 17:27:10 -04:00
committed by Alex Chernyakhovsky
parent 38c84a9330
commit 8469db91db
9 changed files with 14 additions and 16 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ namespace Terminal {
// outside calls to act() to keep horrible things from happening.
Parser::Actions actions;
typedef std::list< std::pair<uint64_t, uint64_t> > input_history_type;
using input_history_type = std::list<std::pair<uint64_t, uint64_t>>;
input_history_type input_history;
uint64_t echo_ack;