# unfck lint

This commit is contained in:
IRainman 2025-11-09 16:40:44 +03:00
parent d0c7def24d
commit 3ae6d3c2b3
2 changed files with 3 additions and 2 deletions

View File

@ -130,7 +130,8 @@ struct event_collector {
LinuxEvents<PERF_TYPE_HARDWARE> linux_events;
event_collector()
: linux_events(std::array<unsigned long long, 4 /*event_counter_types_size*/>{
: linux_events(std::array<unsigned long long,
4 /*event_counter_types_size*/>{
PERF_COUNT_HW_CPU_CYCLES, PERF_COUNT_HW_INSTRUCTIONS,
PERF_COUNT_HW_BRANCH_INSTRUCTIONS, // Retired branch instructions
PERF_COUNT_HW_BRANCH_MISSES}) {}