Index: Source/wtf/RandomNumberSeed.h |
diff --git a/Source/wtf/RandomNumberSeed.h b/Source/wtf/RandomNumberSeed.h |
index f1d46c8f5a4decb35ac15a06b605864508661873..1cdd5f38d9782476908e1743af345b7d8dce9214 100644 |
--- a/Source/wtf/RandomNumberSeed.h |
+++ b/Source/wtf/RandomNumberSeed.h |
@@ -56,10 +56,6 @@ inline void initializeRandomNumberGenerator() |
srand(static_cast<unsigned>(time(0))); |
#endif |
-#if !USE(OS_RANDOMNESS) |
- uint64_t seed = static_cast<uint64_t>(rand()) << 32 | static_cast<uint64_t>(rand()); |
- Internal::initializeRandomNumber(seed); |
-#endif |
} |
} |