File tree 1 file changed +2
-5
lines changed
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 8
8
//!
9
9
//! When the `extra-sizes` feature is enabled: 1040-4064 (multiples of 32)
10
10
11
- use super :: { ArraySize , AssocArraySize } ;
12
-
13
11
#[ cfg( feature = "extra-sizes" ) ]
14
12
pub use extra_sizes:: * ;
15
13
@@ -21,11 +19,11 @@ pub use extra_sizes::*;
21
19
macro_rules! impl_array_sizes {
22
20
( $( $len: expr => $ty: ident) ,+ $( , ) ?) => {
23
21
$(
24
- unsafe impl ArraySize for $ty {
22
+ unsafe impl crate :: ArraySize for $ty {
25
23
type ArrayType <T > = [ T ; $len] ;
26
24
}
27
25
28
- impl <T > AssocArraySize for [ T ; $len] {
26
+ impl <T > crate :: AssocArraySize for [ T ; $len] {
29
27
type Size = $ty;
30
28
}
31
29
) +
@@ -599,7 +597,6 @@ impl_array_sizes_with_import! {
599
597
#[ cfg( feature = "extra-sizes" ) ]
600
598
#[ allow( missing_docs) ]
601
599
mod extra_sizes {
602
- use super :: { ArraySize , AssocArraySize } ;
603
600
// This macro constructs a UInt type from a sequence of bits. The bits are interpreted as the
604
601
// little-endian representation of the integer in question. For example, uint!(1 1 0 1 0 0 1) is
605
602
// U75 (not U105).
You can’t perform that action at this time.
0 commit comments