Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion zenoh-ext/examples/examples/z_advanced_pub.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use std::time::Duration;
// Contributors:
// ZettaScale Zenoh Team, <[email protected]>
//
use clap::{arg, Parser};
use clap::Parser;
use zenoh::{config::Config, key_expr::KeyExpr};
use zenoh_config::ModeDependentValue;
use zenoh_ext::{AdvancedPublisherBuilderExt, CacheConfig, MissDetectionConfig};
Expand Down
2 changes: 1 addition & 1 deletion zenoh-ext/examples/examples/z_advanced_sub.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// Contributors:
// ZettaScale Zenoh Team, <[email protected]>
//
use clap::{arg, Parser};
use clap::Parser;
use zenoh::config::Config;
use zenoh_ext::{AdvancedSubscriberBuilderExt, HistoryConfig, RecoveryConfig};
use zenoh_ext_examples::CommonArgs;
Expand Down
2 changes: 1 addition & 1 deletion zenoh-ext/examples/examples/z_view_size.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//
use std::{sync::Arc, time::Duration};

use clap::{arg, Parser};
use clap::Parser;
use zenoh::config::Config;
use zenoh_ext::group::*;
use zenoh_ext_examples::CommonArgs;
Expand Down
1 change: 0 additions & 1 deletion zenoh/src/net/routing/hat/p2p_peer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ macro_rules! hat_mut {
$t.hat.downcast_mut::<HatTables>().unwrap()
};
}
use hat_mut;

macro_rules! face_hat {
($f:expr) => {
Expand Down
Loading