Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 596564027
Change-Id: I4bb3d0bb8a1156aa4a2173d8aaf8397b4b69838d
  • Loading branch information
gribozavr authored and copybara-github committed Jan 8, 2024
1 parent c9a7aee commit 7d9f6f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion reverb/cc/support/key_generators.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#ifndef REVERB_CC_SUPPORT_KEY_GENERATORS_H_
#define REVERB_CC_SUPPORT_KEY_GENERATORS_H_

#include <cstdint>
#include <limits>

#include "absl/random/random.h"
Expand All @@ -31,7 +32,7 @@ class UniformKeyGenerator : public KeyGenerator {
public:
uint64_t Generate() override {
return absl::Uniform<uint64_t>(bit_gen_, 0,
std::numeric_limits<uint64_t>::max());
std::numeric_limits<uint64_t>::max());
}

private:
Expand Down

0 comments on commit 7d9f6f7

Please sign in to comment.