Add Default impl for GlobSet to satisfy clippy

This commit is contained in:
Sylvestre Ledru
2026-05-31 10:18:32 +02:00
parent c8dfef6563
commit 96762f26ca
+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 {