aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src
diff options
context:
space:
mode:
authorNicole Mazzuca <t-nimaz@microsoft.com>2019-07-10 15:18:44 -0700
committerNicole Mazzuca <t-nimaz@microsoft.com>2019-07-11 18:20:35 -0700
commit43493b56df7c8f7aab02256ab7f65135d4dd1d4c (patch)
tree943888fca203b5961b8237f69e93812f412d855b /toolsrc/src
parent2d6df16849ebcf237d17c919727756d90974daba (diff)
downloadvcpkg-43493b56df7c8f7aab02256ab7f65135d4dd1d4c.tar.gz
vcpkg-43493b56df7c8f7aab02256ab7f65135d4dd1d4c.zip
delete the random number generator
Diffstat (limited to 'toolsrc/src')
-rw-r--r--toolsrc/src/vcpkg/base/rng.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/toolsrc/src/vcpkg/base/rng.cpp b/toolsrc/src/vcpkg/base/rng.cpp
deleted file mode 100644
index 40ff646b7..000000000
--- a/toolsrc/src/vcpkg/base/rng.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <base/rng.h>
-
-namespace vcpkg::Rng {
- namespace {
- std::random_device system_entropy{};
- }
-
- splitmix::splitmix() {
- std::uint64_t top_half = system_entropy();
- std::uint64_t bottom_half = system_entropy();
-
- state = (top_half << 32) | bottom_half;
- }
-}