Skip to content

Commit b6db81d

Browse files
committed
unfck lint
1 parent 4ca0df8 commit b6db81d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/random_string.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ float cygwin_strtof_l(char const *start, char **end) {
5454
class RandomEngine {
5555
public:
5656
RandomEngine() = delete;
57-
RandomEngine(uint64_t new_seed) : wyhash64_x_(new_seed) {};
57+
RandomEngine(uint64_t new_seed) : wyhash64_x_(new_seed){};
5858

5959
uint64_t next() {
6060
// Adapted from https://github.com/wangyi-fudan/wyhash/blob/master/wyhash.h

tests/short_random_string.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ float cygwin_strtof_l(char const *start, char **end) {
5454
class RandomEngine {
5555
public:
5656
RandomEngine() = delete;
57-
RandomEngine(uint64_t new_seed) : wyhash64_x_(new_seed) {};
57+
RandomEngine(uint64_t new_seed) : wyhash64_x_(new_seed){};
5858

5959
uint64_t next() {
6060
// Adapted from https://github.com/wangyi-fudan/wyhash/blob/master/wyhash.h

0 commit comments

Comments
 (0)