diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-05-02 18:30:55 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-05-02 18:30:55 +0000 |
commit | 8d8e909cdc9f4e78e1e1600497d827e1acde6cea (patch) | |
tree | c8c6047827589e56f2ed1f77f23b1f7d1a10e793 /lib/scudo/scudo_utils.h | |
parent | 2953104c9a262728031dc518429d15b969dd6028 (diff) |
Diffstat (limited to 'lib/scudo/scudo_utils.h')
-rw-r--r-- | lib/scudo/scudo_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/scudo/scudo_utils.h b/lib/scudo/scudo_utils.h index f30c86125799..484b0c859e3d 100644 --- a/lib/scudo/scudo_utils.h +++ b/lib/scudo/scudo_utils.h @@ -40,7 +40,7 @@ bool testCPUFeature(CPUFeature feature); // The state (128 bits) will be stored in thread local storage. struct Xorshift128Plus { public: - Xorshift128Plus(); + void initFromURandom(); u64 getNext() { u64 x = State[0]; const u64 y = State[1]; |