mirror of https://github.com/CGAL/cgal
formatting
This commit is contained in:
parent
7d543ae42a
commit
bea63ec2f6
|
|
@ -575,15 +575,14 @@ void Compact_container<T, Allocator>::allocate_new_block()
|
|||
first_item = new_block;
|
||||
last_item = new_block + block_size + 1;
|
||||
set_type(first_item, NULL, START_END);
|
||||
set_type(last_item, NULL, START_END);
|
||||
}
|
||||
else
|
||||
{
|
||||
set_type(last_item, new_block, BLOCK_BOUNDARY);
|
||||
set_type(new_block, last_item, BLOCK_BOUNDARY);
|
||||
last_item = new_block + block_size + 1;
|
||||
set_type(last_item, NULL, START_END);
|
||||
}
|
||||
set_type(last_item, NULL, START_END);
|
||||
// Increase the block_size for the next time.
|
||||
block_size += 16;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue