File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -958,7 +958,7 @@ fn univariant<
958
958
#[ cfg( feature = "randomize" ) ]
959
959
{
960
960
use rand:: { seq:: SliceRandom , SeedableRng } ;
961
- // `ReprOptions.layout_seed ` is a deterministic seed we can use to randomize field
961
+ // `ReprOptions.field_shuffle_seed ` is a deterministic seed we can use to randomize field
962
962
// ordering.
963
963
let mut rng =
964
964
rand_xoshiro:: Xoshiro128StarStar :: seed_from_u64 ( repr. field_shuffle_seed ) ;
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ bitflags! {
41
41
// Internal only for now. If true, don't reorder fields.
42
42
const IS_LINEAR = 1 << 3 ;
43
43
// If true, the type's layout can be randomized using
44
- // the seed stored in `ReprOptions.layout_seed `
44
+ // the seed stored in `ReprOptions.field_shuffle_seed `
45
45
const RANDOMIZE_LAYOUT = 1 << 4 ;
46
46
// Any of these flags being set prevent field reordering optimisation.
47
47
const IS_UNOPTIMISABLE = ReprFlags :: IS_C . bits( )
You can’t perform that action at this time.
0 commit comments