mirror of https://github.com/CGAL/cgal
use a tag for Linf bisector constructions
Instead of the type Has_bisector_constructions_type that relied on SFINAE for choosing bisectors, use Tag_has_bisector_constructions tag which is typedef'ed to be Tag_true for Linf traits. Signed-off-by: Panagiotis Cheilaris <philaris@cs.ntua.gr>
This commit is contained in:
parent
b6044ee297
commit
304dc76a36
|
|
@ -203,7 +203,8 @@ public:
|
|||
// C2E, C2F, E2C, F2C>
|
||||
//Construct_sdg_bisector_2;
|
||||
|
||||
typedef char Has_bisector_constructions_type;
|
||||
// Linf traits contain bisector constructions
|
||||
typedef Tag_true Tag_has_bisector_constructions;
|
||||
|
||||
template<class Gt, class M>
|
||||
class Construct_sdg_bisector_2
|
||||
|
|
|
|||
|
|
@ -47,7 +47,8 @@ public:
|
|||
//CGAL_SEGMENT_DELAUNAY_GRAPH_LINF_2_NS::Construct_sdg_bisector_2<K,MTag>
|
||||
//Construct_sdg_bisector_2;
|
||||
|
||||
typedef char Has_bisector_constructions_type;
|
||||
// Linf traits contain bisector constructions
|
||||
typedef Tag_true Tag_has_bisector_constructions;
|
||||
|
||||
template<class Gt, class M>
|
||||
class Construct_sdg_bisector_2
|
||||
|
|
|
|||
Loading…
Reference in New Issue