diff options
author | daMaex <damaex@live.de> | 2019-10-30 10:42:08 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-12-19 00:12:41 +0100 |
commit | 08b40733a58da23ced34915cb67c0ef24e6e9059 (patch) | |
tree | bfbc36e2e6396cfde3accb05f970beb16063e44c /dep/SFMT/randomc.h | |
parent | 5ae84caf23e42f1005cfa0437896a86e1cb40fd1 (diff) |
Dep/SFMT: updated to newest upstream version from https://github.com/MersenneTwister-Lab/SFMT
* only needed files added
* used CMake and SFMTRand from https://github.com/TrinityCore/TrinityCore/pull/23240 (Thank you Artox)
(cherry picked from commit 4e0279b0e48c9992842010b9f3f132e54a460128)
Diffstat (limited to 'dep/SFMT/randomc.h')
-rw-r--r-- | dep/SFMT/randomc.h | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/dep/SFMT/randomc.h b/dep/SFMT/randomc.h deleted file mode 100644 index eed2c81a205..00000000000 --- a/dep/SFMT/randomc.h +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Copyright notice - * ================ - * GNU General Public License http://www.gnu.org/licenses/gpl.html - * This C++ implementation of SFMT contains parts of the original C code - * which was published under the following BSD license, which is therefore - * in effect in addition to the GNU General Public License. - * Copyright (c) 2006, 2007 by Mutsuo Saito, Makoto Matsumoto and Hiroshima University. - * Copyright (c) 2008 by Agner Fog. - * Copyright (c) 2008-2013 Trinity Core - * - * BSD License: - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * > Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * > Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * > Neither the name of the Hiroshima University nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef RANDOMC_H -#define RANDOMC_H - -// Define integer types with known size: int32_t, uint32_t, int64_t, uint64_t. -// If this doesn't work then insert compiler-specific definitions here: -#if defined(__GNUC__) - // Compilers supporting C99 or C++0x have inttypes.h defining these integer types - #include <inttypes.h> - #define INT64_SUPPORTED // Remove this if the compiler doesn't support 64-bit integers -#elif defined(_WIN16) || defined(__MSDOS__) || defined(_MSDOS) - // 16 bit systems use long int for 32 bit integer - typedef signed long int int32_t; - typedef unsigned long int uint32_t; -#elif defined(_MSC_VER) - // Microsoft have their own definition - typedef signed __int32 int32_t; - typedef unsigned __int32 uint32_t; - typedef signed __int64 int64_t; - typedef unsigned __int64 uint64_t; - #define INT64_SUPPORTED // Remove this if the compiler doesn't support 64-bit integers -#else - // This works with most compilers - typedef signed int int32_t; - typedef unsigned int uint32_t; - typedef long long int64_t; - typedef unsigned long long uint64_t; - #define INT64_SUPPORTED // Remove this if the compiler doesn't support 64-bit integers -#endif - -#endif // RANDOMC_H |