remove superfluous stat fields (count and freed)

This commit is contained in:
Daan Leijen 2025-03-01 16:52:48 -08:00
parent bdaeb1d469
commit 56aba086ea
3 changed files with 59 additions and 71 deletions

View file

@ -563,15 +563,13 @@ void _mi_assert_fail(const char* assertion, const char* fname, unsigned int line
#endif
typedef struct mi_stat_count_s {
int64_t allocated;
int64_t freed;
int64_t total;
int64_t peak;
int64_t current;
} mi_stat_count_t;
typedef struct mi_stat_counter_s {
int64_t total;
int64_t count;
} mi_stat_counter_t;
typedef struct mi_stats_s {