Fixed bug w/ eps data type.

Added size() to cluster_data.



[SVN r45235]
This commit is contained in:
Jonathan Franklin
2008-05-08 22:36:19 +00:00
parent 64d219039e
commit fe73f86604
3 changed files with 9 additions and 4 deletions

View File

@ -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;
};