forked from boostorg/algorithm
Fixed bug w/ eps data type.
Added size() to cluster_data. [SVN r45235]
This commit is contained in:
@ -52,6 +52,7 @@ struct cluster_data
|
||||
value_type & back() { return m_pClusters->back(); }
|
||||
value_type const & back() const { return m_pClusters->back(); }
|
||||
|
||||
size_t size() const { return m_pClusters->size(); }
|
||||
private:
|
||||
boost::shared_ptr<clusters> m_pClusters;
|
||||
};
|
||||
|
Reference in New Issue
Block a user