mirror of https://github.com/CGAL/cgal
Remove useless "using namespace boost" (boost::bind was replaced with lambdas)
This commit is contained in:
parent
6b6bfaae4f
commit
96e565777f
|
|
@ -12,8 +12,6 @@ OutputIterator
|
|||
ch_graham_anderson( InputIterator first, InputIterator beyond,
|
||||
OutputIterator result, const Traits& ch_traits)
|
||||
{
|
||||
using namespace boost;
|
||||
|
||||
typedef typename Traits::Point_2 Point_2;
|
||||
typedef typename Traits::Less_xy_2 Less_xy_2;
|
||||
typedef typename Traits::Less_rotate_ccw_2 Less_rotate_ccw_2;
|
||||
|
|
|
|||
|
|
@ -220,8 +220,6 @@ ch_akl_toussaint(ForwardIterator first, ForwardIterator last,
|
|||
OutputIterator result,
|
||||
const Traits& ch_traits)
|
||||
{
|
||||
using namespace boost;
|
||||
|
||||
typedef typename Traits::Point_2 Point_2;
|
||||
typedef typename Traits::Left_turn_2 Left_of_line;
|
||||
// added
|
||||
|
|
|
|||
|
|
@ -34,8 +34,6 @@ ch__recursive_eddy(List& L,
|
|||
ListIterator a_it, ListIterator b_it,
|
||||
const Traits& ch_traits)
|
||||
{
|
||||
using namespace boost;
|
||||
|
||||
typedef typename Traits::Point_2 Point_2;
|
||||
typedef typename Traits::Left_turn_2 Left_turn_2;
|
||||
typedef typename Traits::Less_signed_distance_to_line_2 Less_dist;
|
||||
|
|
@ -80,8 +78,6 @@ ch_eddy(InputIterator first, InputIterator last,
|
|||
OutputIterator result,
|
||||
const Traits& ch_traits)
|
||||
{
|
||||
using namespace boost;
|
||||
|
||||
typedef typename Traits::Point_2 Point_2;
|
||||
typedef typename Traits::Left_turn_2 Left_turn_2;
|
||||
typedef typename Traits::Equal_2 Equal_2;
|
||||
|
|
|
|||
|
|
@ -36,8 +36,6 @@ ch_jarvis_march(ForwardIterator first, ForwardIterator last,
|
|||
OutputIterator result,
|
||||
const Traits& ch_traits)
|
||||
{
|
||||
using namespace boost;
|
||||
|
||||
if (first == last) return result;
|
||||
typedef typename Traits::Less_rotate_ccw_2 Less_rotate_ccw;
|
||||
typedef typename Traits::Equal_2 Equal_2;
|
||||
|
|
|
|||
|
|
@ -181,8 +181,6 @@ ch_brute_force_chain_check_2(ForwardIterator1 first1,
|
|||
ForwardIterator2 last2,
|
||||
const Traits& ch_traits )
|
||||
{
|
||||
using namespace boost;
|
||||
|
||||
typedef typename Traits::Left_turn_2 Left_turn_2;
|
||||
|
||||
ForwardIterator1 iter11;
|
||||
|
|
|
|||
Loading…
Reference in New Issue