Merge pull request #14 from uutils/fix

Add Default impl for GlobSet to satisfy clippy
This commit is contained in:
Sylvestre Ledru
2026-05-31 10:34:25 +02:00
committed by GitHub
+6
View File
@@ -864,6 +864,12 @@ fn expand_num_shorthand(args: impl Iterator<Item = OsString>) -> Vec<OsString> {
out
}
impl Default for GlobSet {
fn default() -> Self {
Self::new()
}
}
impl GlobSet {
/// Create an empty GlobSet.
pub fn new() -> Self {