diff options
Diffstat (limited to 'src/connectionhandler.h')
-rw-r--r-- | src/connectionhandler.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/connectionhandler.h b/src/connectionhandler.h index 589838b7..a66c075b 100644 --- a/src/connectionhandler.h +++ b/src/connectionhandler.h @@ -106,7 +106,9 @@ class ConnectionHandler private: std::map<unsigned int, MessageHandler*> handlers; - std::list<NetComputer*> clients; + + typedef std::list<NetComputer*> NetComputers; + NetComputers clients; }; #endif |