Skip to content

Commit 7c1cb29

Browse files
committed
Remove wildcard import
Wildcards obfuscate imports; import the types explicitly. Refactor only, no logic changes.
1 parent 1d36f2c commit 7c1cb29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ mod types;
1717

1818
use core::fmt;
1919

20-
use crate::types::*;
20+
use crate::types::{c_int, c_uchar, c_uint};
2121

2222
/// Do not enable any verification.
2323
pub const VERIFY_NONE: c_uint = 0;

0 commit comments

Comments
 (0)