Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
hnwyllmm committed Jan 15, 2024
1 parent 76739fd commit 607b985
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/common/math/integer_generator.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class IntegerGenerator
public:
IntegerGenerator(int min, int max) : distrib_(min, max) {}

IntegerGenerator(const IntegerGenerator &other) = delete;
IntegerGenerator(const IntegerGenerator &other) = delete;
IntegerGenerator &operator=(const IntegerGenerator &) = delete;

int next() { return distrib_(rd_); }
Expand Down

0 comments on commit 607b985

Please sign in to comment.