@@ -60,7 +60,7 @@ impl<'a, const N: usize, T: PrimUInt, F: Field> BitXor<&'a Self> for UInt<N, T,
6060 }
6161}
6262
63- impl < ' a , const N : usize , T : PrimUInt , F : Field > BitXor < UInt < N , T , F > > for & ' a UInt < N , T , F > {
63+ impl < const N : usize , T : PrimUInt , F : Field > BitXor < UInt < N , T , F > > for & UInt < N , T , F > {
6464 type Output = UInt < N , T , F > ;
6565
6666 #[ tracing:: instrument( target = "gr1cs" , skip( self , other) ) ]
@@ -78,7 +78,7 @@ impl<const N: usize, T: PrimUInt, F: Field> BitXor<Self> for UInt<N, T, F> {
7878 }
7979}
8080
81- impl < ' a , const N : usize , T : PrimUInt , F : Field > BitXor < T > for UInt < N , T , F > {
81+ impl < const N : usize , T : PrimUInt , F : Field > BitXor < T > for UInt < N , T , F > {
8282 type Output = UInt < N , T , F > ;
8383
8484 #[ tracing:: instrument( target = "gr1cs" , skip( self , other) ) ]
@@ -105,7 +105,7 @@ impl<'a, const N: usize, T: PrimUInt, F: Field> BitXor<&'a T> for &'a UInt<N, T,
105105 }
106106}
107107
108- impl < ' a , const N : usize , T : PrimUInt , F : Field > BitXor < T > for & ' a UInt < N , T , F > {
108+ impl < const N : usize , T : PrimUInt , F : Field > BitXor < T > for & UInt < N , T , F > {
109109 type Output = UInt < N , T , F > ;
110110
111111 #[ tracing:: instrument( target = "gr1cs" , skip( self , other) ) ]
0 commit comments