diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-06-23 20:44:03 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-06-23 21:14:48 -0700 |
commit | 413cd3fbc5138512ade671907ece6457b7d98d56 (patch) | |
tree | 12e4467918c828489394a16e50f2c8321387727c /src/net | |
parent | 381684059a6481d7a507ae8c690a873aabe6a4cb (diff) | |
download | tmwa-413cd3fbc5138512ade671907ece6457b7d98d56.tar.gz tmwa-413cd3fbc5138512ade671907ece6457b7d98d56.tar.bz2 tmwa-413cd3fbc5138512ade671907ece6457b7d98d56.tar.xz tmwa-413cd3fbc5138512ade671907ece6457b7d98d56.zip |
Compatibility with libc++
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/packets.hpp | 2 | ||||
-rw-r--r-- | src/net/timer.t.hpp | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/net/packets.hpp b/src/net/packets.hpp index 6d37478..2e00ad2 100644 --- a/src/net/packets.hpp +++ b/src/net/packets.hpp @@ -21,6 +21,8 @@ # include "fwd.hpp" +# include <vector> + # include "../compat/cast.hpp" # include "../ints/little.hpp" diff --git a/src/net/timer.t.hpp b/src/net/timer.t.hpp index be32872..0ed8987 100644 --- a/src/net/timer.t.hpp +++ b/src/net/timer.t.hpp @@ -23,6 +23,8 @@ # include "fwd.hpp" +# include <cstdlib> + # include <chrono> # include <functional> |