Skip to content

Commit ea7af4d

Browse files
committed
chore: clippy
1 parent 097b98b commit ea7af4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

blake2/src/macros.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ macro_rules! blake2_impl {
88
#[doc=$vardoc]
99
pub struct $name {
1010
/// Blake2 state vector (8 words total, stored as 2 SIMD vectors).
11-
pub h: [$vec; 2],
11+
pub(crate) h: [$vec; 2],
1212
/// Total number of bytes processed so far.
1313
pub t: u64,
1414
#[cfg(feature = "reset")]
1515
/// Initial state vector for reset functionality.
16-
pub h0: [$vec; 2],
16+
pub(crate) h0: [$vec; 2],
1717
}
1818

1919
impl $name {

0 commit comments

Comments
 (0)