diff options
Diffstat (limited to 'session.h')
-rw-r--r-- | session.h | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -48,18 +48,15 @@ struct statistic_decl { statistic_decl() : type(none), - logarithmic_buckets(0), linear_low(0), linear_high(0), linear_step(0) {} enum { none, linear, logarithmic } type; - int64_t logarithmic_buckets; int64_t linear_low; int64_t linear_high; int64_t linear_step; bool operator==(statistic_decl const & other) { return type == other.type - && logarithmic_buckets == other.logarithmic_buckets && linear_low == other.linear_low && linear_high == other.linear_high && linear_step == other.linear_step; |