diff options
author | andrew <xdotftw@gmail.com> | 2014-02-20 15:38:37 +0100 |
---|---|---|
committer | andrew <xdotftw@gmail.com> | 2014-02-20 15:38:37 +0100 |
commit | f201f4f176fc908e9ddebfed86d4c8ef5582556c (patch) | |
tree | 9cb6601cc1eeeab979c088faa66be52fe27e086e /src/Generating/StructGen.cpp | |
parent | Manual merge (Fixed conflicts) (diff) | |
download | cuberite-f201f4f176fc908e9ddebfed86d4c8ef5582556c.tar cuberite-f201f4f176fc908e9ddebfed86d4c8ef5582556c.tar.gz cuberite-f201f4f176fc908e9ddebfed86d4c8ef5582556c.tar.bz2 cuberite-f201f4f176fc908e9ddebfed86d4c8ef5582556c.tar.lz cuberite-f201f4f176fc908e9ddebfed86d4c8ef5582556c.tar.xz cuberite-f201f4f176fc908e9ddebfed86d4c8ef5582556c.tar.zst cuberite-f201f4f176fc908e9ddebfed86d4c8ef5582556c.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/StructGen.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/Generating/StructGen.cpp b/src/Generating/StructGen.cpp index 4efcf92f0..47945cc2b 100644 --- a/src/Generating/StructGen.cpp +++ b/src/Generating/StructGen.cpp @@ -51,15 +51,6 @@ const int NEST_SIZE_GRAVEL = 32; -template <typename T> T Clamp(T a_Value, T a_Min, T a_Max) -{ - return (a_Value < a_Min) ? a_Min : ((a_Value > a_Max) ? a_Max : a_Value); -} - - - - - /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // cStructGenTrees: |