Skip to content
Snippets Groups Projects
Commit 70f4afc5 authored by Joseph Mirabel's avatar Joseph Mirabel
Browse files

Cosmetic changes: remove spaces.

parent 1a426325
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment