mirror of https://github.com/CGAL/cgal
Fix parameter names for consistency
This commit is contained in:
parent
4a301448fe
commit
9ed943e92f
|
|
@ -47,8 +47,8 @@
|
||||||
template<typename K> \
|
template<typename K> \
|
||||||
inline \
|
inline \
|
||||||
decltype(auto) \
|
decltype(auto) \
|
||||||
intersection(const B<K>& a, const A<K>& b) { \
|
intersection(const B<K>& b, const A<K>& a) { \
|
||||||
return BOOST_PP_CAT(K().intersect_, BOOST_PP_CAT(DIM, _object()(a, b))); \
|
return BOOST_PP_CAT(K().intersect_, BOOST_PP_CAT(DIM, _object()(b, a))); \
|
||||||
}
|
}
|
||||||
|
|
||||||
#define CGAL_INTERSECTION_FUNCTION_SELF(A, DIM) \
|
#define CGAL_INTERSECTION_FUNCTION_SELF(A, DIM) \
|
||||||
|
|
@ -67,8 +67,8 @@
|
||||||
} \
|
} \
|
||||||
template<typename K> \
|
template<typename K> \
|
||||||
inline bool \
|
inline bool \
|
||||||
do_intersect(const B<K>& a, const A<K>& b) { \
|
do_intersect(const B<K>& b, const A<K>& a) { \
|
||||||
return BOOST_PP_CAT(K().do_intersect_, BOOST_PP_CAT(DIM, _object()(a, b))); \
|
return BOOST_PP_CAT(K().do_intersect_, BOOST_PP_CAT(DIM, _object()(b, a))); \
|
||||||
}
|
}
|
||||||
|
|
||||||
#define CGAL_DO_INTERSECT_FUNCTION_SELF(A, DIM) \
|
#define CGAL_DO_INTERSECT_FUNCTION_SELF(A, DIM) \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue