File tree 1 file changed +3
-0
lines changed 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -267,6 +267,7 @@ pub trait ConstantTimeEq {
267
267
/// * `Choice(1u8)` if `self == other`;
268
268
/// * `Choice(0u8)` if `self != other`.
269
269
#[ inline]
270
+ #[ allow( unused_attributes) ]
270
271
fn ct_eq ( & self , other : & Self ) -> Choice ;
271
272
272
273
/// Determine if two items are NOT equal.
@@ -413,6 +414,7 @@ pub trait ConditionallySelectable: Copy {
413
414
/// # }
414
415
/// ```
415
416
#[ inline]
417
+ #[ allow( unused_attributes) ]
416
418
fn conditional_select ( a : & Self , b : & Self , choice : Choice ) -> Self ;
417
419
418
420
/// Conditionally assign `other` to `self`, according to `choice`.
@@ -603,6 +605,7 @@ pub trait ConditionallyNegatable {
603
605
///
604
606
/// This function should execute in constant time.
605
607
#[ inline]
608
+ #[ allow( unused_attributes) ]
606
609
fn conditional_negate ( & mut self , choice : Choice ) ;
607
610
}
608
611
You can’t perform that action at this time.
0 commit comments