There was an error while loading. Please reload this page.
1 parent ea4d5f1 commit 160c08fCopy full SHA for 160c08f
1 file changed
fuzztest/fuzzing_bit_gen.cc
@@ -37,10 +37,10 @@ using FuzzingMockStream = ::fuzztest::internal::FuzzingMockStream;
37
using Instruction = FuzzingMockStream::Instruction;
38
39
// Minimal implementation of a PCG64 engine equivalent to xsl_rr_128_64.
40
-inline constexpr absl::uint128 multiplier() {
+constexpr absl::uint128 multiplier() {
41
return absl::MakeUint128(0x2360ed051fc65da4, 0x4385df649fccf645);
42
}
43
-inline constexpr absl::uint128 increment() {
+constexpr absl::uint128 increment() {
44
return absl::MakeUint128(0x5851f42d4c957f2d, 0x14057b7ef767814f);
45
46
inline absl::uint128 lcg(absl::uint128 s) {
0 commit comments