From 0bc9aec4b9c7d880649183f12279db150f63d9d1 Mon Sep 17 00:00:00 2001 From: HedgehogInTheCPP Date: Mon, 17 Aug 2026 23:58:52 +0300 Subject: [PATCH] lint unfck --- tests/random_string.cpp | 1 + tests/short_random_string.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/random_string.cpp b/tests/random_string.cpp index 20329ea..88d74bf 100644 --- a/tests/random_string.cpp +++ b/tests/random_string.cpp @@ -54,6 +54,7 @@ float cygwin_strtof_l(char const *start, char **end) { class RandomEngine { public: RandomEngine() = delete; + RandomEngine(uint64_t new_seed) : wyhash64_x_(new_seed) {} uint64_t next() { diff --git a/tests/short_random_string.cpp b/tests/short_random_string.cpp index a271dbb..2da56a2 100644 --- a/tests/short_random_string.cpp +++ b/tests/short_random_string.cpp @@ -54,6 +54,7 @@ float cygwin_strtof_l(char const *start, char **end) { class RandomEngine { public: RandomEngine() = delete; + RandomEngine(uint64_t new_seed) : wyhash64_x_(new_seed) {} uint64_t next() {