diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-04-14 14:27:59 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-04-19 20:09:35 -0700 |
commit | 147c3e9c891c12dbfd39b65ee0f5baddf5f81b14 (patch) | |
tree | 8b8f6c86691e13c522e1e9237f7587a5a147cd52 /src/mmo | |
parent | 7f16d356995d4e9c29105f98d502a7e51a4c775d (diff) | |
download | tmwa-147c3e9c891c12dbfd39b65ee0f5baddf5f81b14.tar.gz tmwa-147c3e9c891c12dbfd39b65ee0f5baddf5f81b14.tar.bz2 tmwa-147c3e9c891c12dbfd39b65ee0f5baddf5f81b14.tar.xz tmwa-147c3e9c891c12dbfd39b65ee0f5baddf5f81b14.zip |
Make clang and libc++ happy
Diffstat (limited to 'src/mmo')
-rw-r--r-- | src/mmo/extract.hpp | 4 | ||||
-rw-r--r-- | src/mmo/utils.hpp | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/mmo/extract.hpp b/src/mmo/extract.hpp index 622281b..f3df0f3 100644 --- a/src/mmo/extract.hpp +++ b/src/mmo/extract.hpp @@ -21,7 +21,11 @@ # include "../sanity.hpp" +# include <cerrno> +# include <cstdlib> + # include <algorithm> +# include <vector> # include "../strings/xstring.hpp" diff --git a/src/mmo/utils.hpp b/src/mmo/utils.hpp index d59f7ac..3002866 100644 --- a/src/mmo/utils.hpp +++ b/src/mmo/utils.hpp @@ -23,7 +23,10 @@ # include "../sanity.hpp" +# include <sys/types.h> + # include <cstdio> +# include <ctime> # include <type_traits> |