lint unfck

This commit is contained in:
HedgehogInTheCPP 2026-08-17 23:22:16 +03:00
parent 32f5fe73b9
commit 734a038353
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +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) {};
RandomEngine(uint64_t new_seed) : wyhash64_x_(new_seed) {}
uint64_t next() {
// Adapted from https://github.com/wangyi-fudan/wyhash/blob/master/wyhash.h

View File

@ -54,7 +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) {};
RandomEngine(uint64_t new_seed) : wyhash64_x_(new_seed) {}
uint64_t next() {
// Adapted from https://github.com/wangyi-fudan/wyhash/blob/master/wyhash.h