From 82e72a14adb59ebdc46e42076734723afb7c0eff Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Sun, 28 Sep 2025 20:10:39 -0400 Subject: [PATCH] Remove unused import ``` error: unused import: `define_linear_ds_test` --> test/integration-ebpf/src/linear_data_structures.rs:59:5 | 59 | use define_linear_ds_test; | ^^^^^^^^^^^^^^^^^^^^^ | = note: `-D unused-imports` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unused_imports)]` error: could not compile `integration-ebpf` (bin "linear_data_structures") due to 1 previous error ``` --- test/integration-ebpf/src/linear_data_structures.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/integration-ebpf/src/linear_data_structures.rs b/test/integration-ebpf/src/linear_data_structures.rs index d8f01709..2bc5c172 100644 --- a/test/integration-ebpf/src/linear_data_structures.rs +++ b/test/integration-ebpf/src/linear_data_structures.rs @@ -56,8 +56,6 @@ macro_rules! define_linear_ds_test { }; } -use define_linear_ds_test; - define_linear_ds_test!(Stack, TEST_STACK, push_fn: test_stack_push, pop_fn: test_stack_pop,