diff --git a/utils/bench-simulator.cc b/utils/bench-simulator.cc index 75eeda668..8a3011ec1 100644 --- a/utils/bench-simulator.cc +++ b/utils/bench-simulator.cc @@ -33,6 +33,7 @@ bool g_debug = false; class Bench { public: + Bench (); void ReadDistribution (std::istream &istream); void SetTotal (uint32_t total); void RunBench (void); @@ -44,6 +45,11 @@ private: uint32_t m_total; }; +Bench::Bench () + : m_n (0), + m_total (0) +{} + void Bench::SetTotal (uint32_t total) {