Fix definitions of constants for RngSupport

At a low-enough optimization level, even integral constants can end up
odr-used; that causes a link-time failure, if they don't have a definition.

PiperOrigin-RevId: 280737529
Change-Id: I55dd79d86fd83abf9a0bd285081081dfd3e2b128
This commit is contained in:
Randy Dodgen 2019-11-15 14:34:07 -08:00 committed by TensorFlower Gardener
parent 618a56eae8
commit 684d681b85

View File

@ -40,10 +40,8 @@ bool RngSupport::CheckSeed(const uint8 *seed, uint64 seed_bytes) {
return true;
}
#if defined(__APPLE__) || defined(__FreeBSD__)
const int RngSupport::kMinSeedBytes;
const int RngSupport::kMaxSeedBytes;
#endif
} // namespace rng
} // namespace stream_executor