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:
Guillaume Damiand 2012-05-03 19:15:06 +00:00
parent aad2dfdde0
commit 559ac7992a
1 changed files with 0 additions and 4 deletions

View File

@ -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),