File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,8 @@ struct event_collector {
130130 LinuxEvents<PERF_TYPE_HARDWARE> linux_events;
131131
132132 event_collector ()
133- : linux_events(std::array<unsigned long long , 4 /* event_counter_types_size*/ >{
133+ : linux_events(std::array<unsigned long long ,
134+ 4 /* event_counter_types_size*/ >{
134135 PERF_COUNT_HW_CPU_CYCLES, PERF_COUNT_HW_INSTRUCTIONS,
135136 PERF_COUNT_HW_BRANCH_INSTRUCTIONS, // Retired branch instructions
136137 PERF_COUNT_HW_BRANCH_MISSES}) {}
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ using parse_options = parse_options_t<char>;
180180 (defined (_M_AMD64) || defined (_M_X64) || \
181181 (defined (_M_IX86_FP) && _M_IX86_FP == 2 )))
182182// try to fix error on x86 platform: disable SSE2 code
183- // #define FASTFLOAT_SSE2 1
183+ // #define FASTFLOAT_SSE2 1
184184#endif
185185
186186#if defined(__aarch64__) || defined(_M_ARM64)
You can’t perform that action at this time.
0 commit comments