From 70f4afc5c7d9eee871f9c048f87128942ec8b111 Mon Sep 17 00:00:00 2001 From: Joseph Mirabel <josephmirabel@gmail.com> Date: Sat, 15 Aug 2015 13:07:11 +0200 Subject: [PATCH] Cosmetic changes: remove spaces. --- include/hpp/statistics/bin.hh | 2 +- include/hpp/statistics/distribution.hh | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/hpp/statistics/bin.hh b/include/hpp/statistics/bin.hh index 4e2d818..e79c83f 100644 --- a/include/hpp/statistics/bin.hh +++ b/include/hpp/statistics/bin.hh @@ -70,7 +70,7 @@ namespace hpp { /// The number of occurence. size_t freq_; }; - + std::ostream& operator<< (std::ostream& os, const hpp::statistics::Bin& b); /// Template class to do statistics. diff --git a/include/hpp/statistics/distribution.hh b/include/hpp/statistics/distribution.hh index cbc1286..4cb2480 100644 --- a/include/hpp/statistics/distribution.hh +++ b/include/hpp/statistics/distribution.hh @@ -27,7 +27,7 @@ namespace hpp { namespace statistics { template < typename Value_t > - class DiscreteDistribution + class DiscreteDistribution { public: typedef std::size_t Weight_t; @@ -117,16 +117,16 @@ namespace hpp { /// Iterate on the values. /// \{ iterator begin () { - return values_.begin (); + return values_.begin (); } const_iterator begin () const { - return values_.begin (); + return values_.begin (); } iterator end () { - return values_.end (); + return values_.end (); } const_iterator end () const { - return values_.end (); + return values_.end (); } /// \} private: -- GitLab