mirror of https://github.com/CGAL/cgal
*** empty log message ***
This commit is contained in:
parent
56b710d5fe
commit
f38c8e9f94
|
|
@ -10,7 +10,7 @@
|
|||
// release :
|
||||
// release_date :
|
||||
//
|
||||
// file : Test_kernel.h
|
||||
// file : Kernel_archetype.h
|
||||
// package : Kernel_23
|
||||
// maintainer :
|
||||
// revision : $Revision$
|
||||
|
|
@ -141,7 +141,8 @@ public:
|
|||
// functors and access functions ...
|
||||
|
||||
// predicate ...
|
||||
#define CGAL_Kernel_pred(Y,Z) typedef CGALca::Y<Kernel_archetype> Y; Y Z() const {return Y();}
|
||||
#define CGAL_Kernel_pred(Y,Z) typedef CGALca::Y<Kernel_archetype> Y; \
|
||||
Y Z() const {return Y();}
|
||||
// accessor function ...
|
||||
#define CGAL_Kernel_cons(Y,Z) CGAL_Kernel_pred(Y,Z)
|
||||
|
||||
|
|
|
|||
|
|
@ -82,10 +82,12 @@ struct Test_point_2 {
|
|||
};
|
||||
|
||||
#if defined(CGAL_CONCEPT_ARCHETYPE_ALLOW_COMPARISONS)
|
||||
inline bool operator==(const Test_point_2& obj1, const Test_point_2& obj2)
|
||||
inline bool operator==(const Test_point_2& obj1,
|
||||
const Test_point_2& obj2)
|
||||
{ return true; }
|
||||
|
||||
inline bool operator!=(const Test_point_2& obj1, const Test_point_2& obj2)
|
||||
inline bool operator!=(const Test_point_2& obj1,
|
||||
const Test_point_2& obj2)
|
||||
{ return true; }
|
||||
#endif
|
||||
|
||||
|
|
@ -177,10 +179,12 @@ struct Test_direction_2 {
|
|||
};
|
||||
|
||||
#if defined(CGAL_CONCEPT_ARCHETYPE_ALLOW_COMPARISONS)
|
||||
inline bool operator==(const Test_direction_2& obj1, const Test_direction_2& obj2)
|
||||
inline bool operator==(const Test_direction_2& obj1,
|
||||
const Test_direction_2& obj2)
|
||||
{ return true; }
|
||||
|
||||
inline bool operator!=(const Test_direction_2& obj1, const Test_direction_2& obj2)
|
||||
inline bool operator!=(const Test_direction_2& obj1,
|
||||
const Test_direction_2& obj2)
|
||||
{ return true; }
|
||||
#endif
|
||||
|
||||
|
|
@ -196,10 +200,12 @@ struct Test_triangle_2 {
|
|||
};
|
||||
|
||||
#if defined(CGAL_CONCEPT_ARCHETYPE_ALLOW_COMPARISONS)
|
||||
inline bool operator==(const Test_triangle_2& obj1, const Test_triangle_2& obj2)
|
||||
inline bool operator==(const Test_triangle_2& obj1,
|
||||
const Test_triangle_2& obj2)
|
||||
{ return true; }
|
||||
|
||||
inline bool operator!=(const Test_triangle_2& obj1, const Test_triangle_2& obj2)
|
||||
inline bool operator!=(const Test_triangle_2& obj1,
|
||||
const Test_triangle_2& obj2)
|
||||
{ return true; }
|
||||
#endif
|
||||
|
||||
|
|
|
|||
|
|
@ -224,10 +224,12 @@ struct Test_triangle_3 {
|
|||
};
|
||||
|
||||
#if defined(CGAL_CONCEPT_ARCHETYPE_ALLOW_COMPARISONS)
|
||||
inline bool operator==(const Test_triangle_3& obj1, const Test_triangle_3& obj2)
|
||||
inline bool operator==(const Test_triangle_3& obj1,
|
||||
const Test_triangle_3& obj2)
|
||||
{ return true; }
|
||||
|
||||
inline bool operator!=(const Test_triangle_3& obj1, const Test_triangle_3& obj2)
|
||||
inline bool operator!=(const Test_triangle_3& obj1,
|
||||
const Test_triangle_3& obj2)
|
||||
{ return true; }
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue