aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src
diff options
context:
space:
mode:
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;
- }
-}