diff options
author | SmallJoker <mk939@ymail.com> | 2017-01-18 21:03:15 +0100 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2017-01-19 20:19:53 +0100 |
commit | dd282e646c42e3524bc546372c6a648e99b3c9db (patch) | |
tree | 3b867ade047529d78c54737ae603a952050bc50c | |
parent | 7279f0b37335396c85f6bdd7dc67ff56e53df0f9 (diff) | |
download | minetest-dd282e646c42e3524bc546372c6a648e99b3c9db.tar.gz minetest-dd282e646c42e3524bc546372c6a648e99b3c9db.tar.bz2 minetest-dd282e646c42e3524bc546372c6a648e99b3c9db.zip |
Fix MSVC build Build broken by 98e36d7
-rw-r--r-- | src/content_sao.cpp | 1 | ||||
-rw-r--r-- | src/treegen.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/content_sao.cpp b/src/content_sao.cpp index bf8282af4..840e04ed9 100644 --- a/src/content_sao.cpp +++ b/src/content_sao.cpp @@ -18,6 +18,7 @@ with this program; if not, write to the Free Software Foundation, Inc., */ #include "content_sao.h" +#include "util/mathconstants.h" #include "util/serialize.h" #include "collision.h" #include "environment.h" diff --git a/src/treegen.cpp b/src/treegen.cpp index 4df574f34..e6c514ab9 100644 --- a/src/treegen.cpp +++ b/src/treegen.cpp @@ -21,6 +21,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include <stack> #include "util/pointer.h" #include "util/numeric.h" +#include "util/mathconstants.h" #include "map.h" #include "serverenvironment.h" #include "nodedef.h" |