mirror of https://github.com/CGAL/cgal
replace assertion by assume
This commit is contained in:
parent
184b00a030
commit
facd881c19
|
|
@ -821,9 +821,9 @@ private:
|
|||
for(const auto& [va, vb]: border_edges_set) {
|
||||
Cell_handle c;
|
||||
int i, j;
|
||||
CGAL_assertion_code(bool b =)
|
||||
CGAL_assume_code(bool b =)
|
||||
this->tds().is_edge(va, vb, c, i, j);
|
||||
CGAL_assertion(b);
|
||||
CGAL_assume(b);
|
||||
border_edges.emplace_back(c, i, j);
|
||||
}
|
||||
#if CGAL_DEBUG_CDT_3
|
||||
|
|
|
|||
Loading…
Reference in New Issue