@@ -1113,10 +1113,10 @@ instance Unbox (f (g a)) => Unbox (Compose f g a)
11131113-- ------
11141114
11151115data instance MVector s (a , b )
1116- = MV_2 {- # UNPACK # -} !Int ! (MVector s a )
1116+ = MV_2 ! Int ! (MVector s a )
11171117 ! (MVector s b )
11181118data instance Vector (a , b )
1119- = V_2 {- # UNPACK # -} !Int ! (Vector a )
1119+ = V_2 ! Int ! (Vector a )
11201120 ! (Vector b )
11211121instance (Unbox a , Unbox b ) => Unbox (a , b )
11221122instance (Unbox a , Unbox b ) => M. MVector MVector (a , b ) where
@@ -1220,11 +1220,11 @@ instance (Unbox a, Unbox b) => G.Vector Vector (a, b) where
12201220 . G. elemseq (undefined :: Vector b ) b
12211221
12221222data instance MVector s (a , b , c )
1223- = MV_3 {- # UNPACK # -} !Int ! (MVector s a )
1223+ = MV_3 ! Int ! (MVector s a )
12241224 ! (MVector s b )
12251225 ! (MVector s c )
12261226data instance Vector (a , b , c )
1227- = V_3 {- # UNPACK # -} !Int ! (Vector a )
1227+ = V_3 ! Int ! (Vector a )
12281228 ! (Vector b )
12291229 ! (Vector c )
12301230instance (Unbox a , Unbox b , Unbox c ) => Unbox (a , b , c )
@@ -1351,12 +1351,12 @@ instance (Unbox a,
13511351 . G. elemseq (undefined :: Vector c ) c
13521352
13531353data instance MVector s (a , b , c , d )
1354- = MV_4 {- # UNPACK # -} !Int ! (MVector s a )
1354+ = MV_4 ! Int ! (MVector s a )
13551355 ! (MVector s b )
13561356 ! (MVector s c )
13571357 ! (MVector s d )
13581358data instance Vector (a , b , c , d )
1359- = V_4 {- # UNPACK # -} !Int ! (Vector a )
1359+ = V_4 ! Int ! (Vector a )
13601360 ! (Vector b )
13611361 ! (Vector c )
13621362 ! (Vector d )
@@ -1513,13 +1513,13 @@ instance (Unbox a,
15131513 . G. elemseq (undefined :: Vector d ) d
15141514
15151515data instance MVector s (a , b , c , d , e )
1516- = MV_5 {- # UNPACK # -} !Int ! (MVector s a )
1516+ = MV_5 ! Int ! (MVector s a )
15171517 ! (MVector s b )
15181518 ! (MVector s c )
15191519 ! (MVector s d )
15201520 ! (MVector s e )
15211521data instance Vector (a , b , c , d , e )
1522- = V_5 {- # UNPACK # -} !Int ! (Vector a )
1522+ = V_5 ! Int ! (Vector a )
15231523 ! (Vector b )
15241524 ! (Vector c )
15251525 ! (Vector d )
@@ -1708,14 +1708,14 @@ instance (Unbox a,
17081708 . G. elemseq (undefined :: Vector e ) e
17091709
17101710data instance MVector s (a , b , c , d , e , f )
1711- = MV_6 {- # UNPACK # -} !Int ! (MVector s a )
1711+ = MV_6 ! Int ! (MVector s a )
17121712 ! (MVector s b )
17131713 ! (MVector s c )
17141714 ! (MVector s d )
17151715 ! (MVector s e )
17161716 ! (MVector s f )
17171717data instance Vector (a , b , c , d , e , f )
1718- = V_6 {- # UNPACK # -} !Int ! (Vector a )
1718+ = V_6 ! Int ! (Vector a )
17191719 ! (Vector b )
17201720 ! (Vector c )
17211721 ! (Vector d )
0 commit comments