diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-03-14 15:46:33 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-03-14 15:46:33 +0100 |
commit | c51a9b5fc221298970f81b7cd785457323dbd95c (patch) | |
tree | db2e839cc09febf48735660e6fb2a7df3d63113b /src/Noise.cpp | |
parent | Made unreachable code an error (diff) | |
parent | Merge pull request #805 from worktycho/undef (diff) | |
download | cuberite-c51a9b5fc221298970f81b7cd785457323dbd95c.tar cuberite-c51a9b5fc221298970f81b7cd785457323dbd95c.tar.gz cuberite-c51a9b5fc221298970f81b7cd785457323dbd95c.tar.bz2 cuberite-c51a9b5fc221298970f81b7cd785457323dbd95c.tar.lz cuberite-c51a9b5fc221298970f81b7cd785457323dbd95c.tar.xz cuberite-c51a9b5fc221298970f81b7cd785457323dbd95c.tar.zst cuberite-c51a9b5fc221298970f81b7cd785457323dbd95c.zip |
Diffstat (limited to 'src/Noise.cpp')
-rw-r--r-- | src/Noise.cpp | 8 |
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)) |