summaryrefslogtreecommitdiffstats
path: root/src/Noise.cpp
diff options
context:
space:
mode:
authorTycho <work.tycho+git@gmail.com>2014-03-14 16:04:48 +0100
committerTycho <work.tycho+git@gmail.com>2014-03-14 16:04:48 +0100
commit693e59c6a4e47b5ee3d0422c6cdb9527d32491c0 (patch)
tree91a1ab3710a58e8996345f0de21ccb9ee9cbaa63 /src/Noise.cpp
parentAdded Noreturn attribtes to a couple of functions and made a missing noreturn an error (diff)
parentMerge pull request #805 from worktycho/undef (diff)
downloadcuberite-693e59c6a4e47b5ee3d0422c6cdb9527d32491c0.tar
cuberite-693e59c6a4e47b5ee3d0422c6cdb9527d32491c0.tar.gz
cuberite-693e59c6a4e47b5ee3d0422c6cdb9527d32491c0.tar.bz2
cuberite-693e59c6a4e47b5ee3d0422c6cdb9527d32491c0.tar.lz
cuberite-693e59c6a4e47b5ee3d0422c6cdb9527d32491c0.tar.xz
cuberite-693e59c6a4e47b5ee3d0422c6cdb9527d32491c0.tar.zst
cuberite-693e59c6a4e47b5ee3d0422c6cdb9527d32491c0.zip
Diffstat (limited to 'src/Noise.cpp')
-rw-r--r--src/Noise.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Noise.cpp b/src/Noise.cpp
index 5f23a47f9..a97ea70c6 100644
--- a/src/Noise.cpp
+++ b/src/Noise.cpp
@@ -3,14 +3,6 @@
#include "Noise.h"
-
-
-
-
-#if NOISE_USE_SSE
- #include <smmintrin.h> //_mm_mul_epi32
-#endif
-
#define FAST_FLOOR(x) (((x) < 0) ? (((int)x) - 1) : ((int)x))