Skip to content

Commit e18854c

Browse files
chore: test
1 parent 789fb65 commit e18854c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

core/include/codspeed.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#ifndef CODSPEED_H
22
#define CODSPEED_H
33

4+
#include <cstdint>
45
#include <string>
56
#include <vector>
67

@@ -33,7 +34,7 @@ class CodSpeed {
3334
struct RawWalltimeBenchmark {
3435
std::string name;
3536
std::string uri;
36-
long iter_per_round;
37+
int64_t iter_per_round;
3738
double mean_ns;
3839
double median_ns;
3940
double stdev_ns;

core/src/walltime.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ struct BenchmarkStats {
3131
double total_time;
3232
uint64_t iqr_outlier_rounds;
3333
uint64_t stdev_outlier_rounds;
34-
long iter_per_round;
34+
int64_t iter_per_round;
3535
uint64_t warmup_iters;
3636
};
3737

0 commit comments

Comments
 (0)