Add include to DeterministicRandom.cpp

This commit is contained in:
sfc-gh-tclinkenbeard 2021-06-28 14:50:35 -07:00
parent 9c1e154481
commit a33a0a7fff
1 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,8 @@
#include "flow/DeterministicRandom.h"
#include <cstring>
uint64_t DeterministicRandom::gen64() {
uint64_t curr = next;
next = (uint64_t(random()) << 32) ^ random();