diff options
| author | Nicole Mazzuca <t-nimaz@microsoft.com> | 2019-07-10 15:18:44 -0700 |
|---|---|---|
| committer | Nicole Mazzuca <t-nimaz@microsoft.com> | 2019-07-11 18:20:35 -0700 |
| commit | 43493b56df7c8f7aab02256ab7f65135d4dd1d4c (patch) | |
| tree | 943888fca203b5961b8237f69e93812f412d855b /toolsrc/src | |
| parent | 2d6df16849ebcf237d17c919727756d90974daba (diff) | |
| download | vcpkg-43493b56df7c8f7aab02256ab7f65135d4dd1d4c.tar.gz vcpkg-43493b56df7c8f7aab02256ab7f65135d4dd1d4c.zip | |
delete the random number generator
Diffstat (limited to 'toolsrc/src')
| -rw-r--r-- | toolsrc/src/vcpkg/base/rng.cpp | 14 |
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; - } -} |
