Indentation

This commit is contained in:
Laurent Rineau 2018-04-23 13:26:50 +00:00 committed by GitHub
parent 1e1025e604
commit 81cfcf722d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -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,7 +691,7 @@ 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);