From f99de9981cbb1749f66102b259bde71c134b2c03 Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Mon, 20 Oct 2025 06:09:07 +0530 Subject: [PATCH] Fix includes for PerfEventArray --- src/maps/perf_event_array.cpp | 4 +++- src/maps/perf_event_array.h | 1 - 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/maps/perf_event_array.cpp b/src/maps/perf_event_array.cpp index 66214e8..8ffc20d 100644 --- a/src/maps/perf_event_array.cpp +++ b/src/maps/perf_event_array.cpp @@ -1,8 +1,10 @@ -#include "perf_event_array.h" +#include "maps/perf_event_array.h" #include "core/bpf_exception.h" #include "core/bpf_map.h" #include "core/bpf_object.h" #include "utils/struct_parser.h" +#include +#include PerfEventArray::PerfEventArray(std::shared_ptr map, int page_cnt, py::function callback, py::object lost_callback) diff --git a/src/maps/perf_event_array.h b/src/maps/perf_event_array.h index d35aceb..1a1cba9 100644 --- a/src/maps/perf_event_array.h +++ b/src/maps/perf_event_array.h @@ -3,7 +3,6 @@ #include #include -#include #include #include