mirror of https://github.com/CGAL/cgal
Bugfix: Remove an undocumented constructor of Cell_attribute_with_point class which involves a conflict if an user uses Point as Info template argument.
This commit is contained in:
parent
aad2dfdde0
commit
559ac7992a
|
|
@ -85,10 +85,6 @@ namespace CGAL {
|
||||||
Cell_attribute_with_point(const Point& apoint) : Base2(apoint)
|
Cell_attribute_with_point(const Point& apoint) : Base2(apoint)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
/// Contructor with an attribute in parameter.
|
|
||||||
Cell_attribute_with_point(const Info& ainfo) : Base1(ainfo)
|
|
||||||
{}
|
|
||||||
|
|
||||||
/// Contructor with a point and an attribute in parameters.
|
/// Contructor with a point and an attribute in parameters.
|
||||||
Cell_attribute_with_point(const Point& apoint, const Info& ainfo) :
|
Cell_attribute_with_point(const Point& apoint, const Info& ainfo) :
|
||||||
Base1(ainfo),
|
Base1(ainfo),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue