diff options
author | gumi <git@gumi.ca> | 2018-04-05 21:02:01 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2018-04-05 21:02:01 -0400 |
commit | 336d66d4fa3ea2ef0c75b686773af728af5a26a5 (patch) | |
tree | 248ff72857b308b834dcd60119018cecb9174ed1 | |
parent | abc8381fe4cce0909d15d260d3fdc99b93d64508 (diff) | |
download | tmwa-336d66d4fa3ea2ef0c75b686773af728af5a26a5.tar.gz tmwa-336d66d4fa3ea2ef0c75b686773af728af5a26a5.tar.bz2 tmwa-336d66d4fa3ea2ef0c75b686773af728af5a26a5.tar.xz tmwa-336d66d4fa3ea2ef0c75b686773af728af5a26a5.zip |
gcc doesn't like it when we initialize in the wrong order
-rw-r--r-- | src/net/socket.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/socket.hpp b/src/net/socket.hpp index 6115d70..81a6120 100644 --- a/src/net/socket.hpp +++ b/src/net/socket.hpp @@ -77,8 +77,8 @@ struct Session /// Checks whether a newly-connected socket actually does anything TimeT created; - bool connected; TimeT last_tick; + bool connected; private: struct { |