Don't use *_t for our own typedefs
It's reserved by POSIX. (closes #158 pull request)
This commit is contained in:
committed by
Keith Winstein
parent
937882caff
commit
cd2d482484
@@ -34,8 +34,8 @@ namespace Terminal {
|
||||
Terminal::Emulator terminal;
|
||||
Terminal::Display display;
|
||||
|
||||
typedef std::list< std::pair<uint64_t, uint64_t> > input_history_t;
|
||||
input_history_t input_history;
|
||||
typedef std::list< std::pair<uint64_t, uint64_t> > input_history_type;
|
||||
input_history_type input_history;
|
||||
uint64_t echo_ack;
|
||||
|
||||
static const int ECHO_TIMEOUT = 50; /* for late ack */
|
||||
|
||||
Reference in New Issue
Block a user