mirror of https://github.com/CGAL/cgal
Fixed bug in constructor of Point_container (nonexisting conversion from int to std::vector::iterator)
This commit is contained in:
parent
7bfe687840
commit
9d7a7e428a
|
|
@ -1,3 +1,6 @@
|
||||||
|
08 March 2006 Andreas Fabri
|
||||||
|
- Fixed bug in constructor of Point_container (nonexisting conversion from int to std::vector::iterator)
|
||||||
|
|
||||||
05 December 2005 Andreas Fabri
|
05 December 2005 Andreas Fabri
|
||||||
- Kd_tree::invalidate_built didn't clear vector 'data'
|
- Kd_tree::invalidate_built didn't clear vector 'data'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -232,7 +232,7 @@ public:
|
||||||
|
|
||||||
// building an empty container
|
// building an empty container
|
||||||
Point_container(const int d) :
|
Point_container(const int d) :
|
||||||
b(NULL), e(NULL), bbox(d), tbox(d)
|
bbox(d), tbox(d)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
template <class Traits2>
|
template <class Traits2>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue