aboutsummaryrefslogtreecommitdiff
path: root/dep/SFMT
diff options
context:
space:
mode:
authorclick <click@gonnamakeyou.com>2012-11-27 02:24:12 +0100
committerclick <click@gonnamakeyou.com>2012-11-27 02:24:12 +0100
commit1d7105914a8bf3c5ffda4f1c59f9a98576c1bcd2 (patch)
tree2fb19dd78495a970057e678c6b39ba20058b13fa /dep/SFMT
parent8ef48ecc99caa9c28b7d53bb45e6bd56872170a1 (diff)
Core: Fix some silly warnings (some stupid remnants from old times that has bugged me enough)
No need to recompiling anything, it's just a visual change to make the compilers STFU about variable initializations
Diffstat (limited to 'dep/SFMT')
-rw-r--r--dep/SFMT/SFMT.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/dep/SFMT/SFMT.h b/dep/SFMT/SFMT.h
index 5498b9ac5fb..f1c6f72d2d6 100644
--- a/dep/SFMT/SFMT.h
+++ b/dep/SFMT/SFMT.h
@@ -123,7 +123,8 @@
#define SFMT_PARITY 0x00000001, 0x00000000, 0x00000000, 0x5986f054 // Period certification vector
#endif
-// Functions used by SFMTRand::RandomInitByArray
+// Functions used by SFMTRand::RandomInitByArray (UNUSED AND COMMENTED OUT)
+/*
static uint32_t func1(uint32_t x) {
return (x ^ (x >> 27)) * 1664525U;
}
@@ -131,6 +132,7 @@ static uint32_t func1(uint32_t x) {
static uint32_t func2(uint32_t x) {
return (x ^ (x >> 27)) * 1566083941U;
}
+*/
// Subfunction for the sfmt algorithm
static inline __m128i sfmt_recursion(__m128i const &a, __m128i const &b,