Merge pull request #3868 from eidosmontreal:fix_undefined_symbol_kMaxRange

PiperOrigin-RevId: 460222898
Change-Id: I652b8058aa98b56d849c5ab1399f75e531dcc959
This commit is contained in:
Copybara-Service 2022-07-11 08:49:28 -07:00
commit 2e1346de56

View File

@ -372,6 +372,8 @@ GTEST_DEFINE_string_(
namespace testing {
namespace internal {
const uint32_t Random::kMaxRange;
// Generates a random number from [0, range), using a Linear
// Congruential Generator (LCG). Crashes if 'range' is 0 or greater
// than kMaxRange.