mirror of https://github.com/CGAL/cgal
Indentation
This commit is contained in:
parent
1e1025e604
commit
81cfcf722d
|
|
@ -656,7 +656,7 @@ protected:
|
||||||
// and store it in the curves' list.
|
// and store it in the curves' list.
|
||||||
Curve_halfedges *p_cv = m_curves_alloc.allocate (1);
|
Curve_halfedges *p_cv = m_curves_alloc.allocate (1);
|
||||||
|
|
||||||
#ifdef CGAL_CXX11
|
#ifdef CGAL_CXX11
|
||||||
std::allocator_traits<Curves_alloc>::construct(m_curves_alloc, p_cv, cv);
|
std::allocator_traits<Curves_alloc>::construct(m_curves_alloc, p_cv, cv);
|
||||||
#else
|
#else
|
||||||
m_curves_alloc.construct (p_cv, cv);
|
m_curves_alloc.construct (p_cv, cv);
|
||||||
|
|
@ -691,8 +691,8 @@ protected:
|
||||||
while (begin != end) {
|
while (begin != end) {
|
||||||
Curve_halfedges *p_cv = m_curves_alloc.allocate (1);
|
Curve_halfedges *p_cv = m_curves_alloc.allocate (1);
|
||||||
|
|
||||||
#ifdef CGAL_CXX11
|
#ifdef CGAL_CXX11
|
||||||
std::allocator_traits<Curves_alloc>::construct(m_curves_alloc, p_cv, *begin);
|
std::allocator_traits<Curves_alloc>::construct(m_curves_alloc, p_cv, *begin);
|
||||||
#else
|
#else
|
||||||
m_curves_alloc.construct (p_cv, *begin);
|
m_curves_alloc.construct (p_cv, *begin);
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -812,7 +812,7 @@ public:
|
||||||
p_cv = &(*ocit1);
|
p_cv = &(*ocit1);
|
||||||
|
|
||||||
#ifdef CGAL_CXX11
|
#ifdef CGAL_CXX11
|
||||||
std::allocator_traits<Curves_alloc>::construct(m_curves_alloc, dup_c, *p_cv);
|
std::allocator_traits<Curves_alloc>::construct(m_curves_alloc, dup_c, *p_cv);
|
||||||
#else
|
#else
|
||||||
m_curves_alloc.construct (dup_c, *p_cv);
|
m_curves_alloc.construct (dup_c, *p_cv);
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -831,9 +831,9 @@ public:
|
||||||
|
|
||||||
p_cv = &(*ocit2);
|
p_cv = &(*ocit2);
|
||||||
#ifdef CGAL_CXX11
|
#ifdef CGAL_CXX11
|
||||||
std::allocator_traits<Curves_alloc>::construct(m_curves_alloc, dup_c, *p_cv);
|
std::allocator_traits<Curves_alloc>::construct(m_curves_alloc, dup_c, *p_cv);
|
||||||
#else
|
#else
|
||||||
m_curves_alloc.construct (dup_c, *p_cv);
|
m_curves_alloc.construct (dup_c, *p_cv);
|
||||||
#endif
|
#endif
|
||||||
m_curves.push_back (*dup_c);
|
m_curves.push_back (*dup_c);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue