mirror of https://github.com/CGAL/cgal
Fix again a compilation error on Windows
It was:
```
..\include\CGAL/Mesh_3/Protect_edges_sizing_field.h(1265): error C2121: '#': invalid character: possibly the result of a macro expansion
..\include\CGAL/Mesh_3/Protect_edges_sizing_field.h(1257): error C2760: syntax error: unexpected token 'identifier', expected '('
```
This commit is contained in:
parent
6d215c776b
commit
e6a42bb597
|
|
@ -1254,15 +1254,17 @@ insert_balls(const Vertex_handle& vp,
|
|||
norm_step_size = step_size;
|
||||
} else {
|
||||
CGAL_assertion_code(using boost::math::float_prior);
|
||||
#if CGAL_MESH_3_PROTECTION_DEBUG & 4
|
||||
CGAL_assertion_msg(n==0 ||
|
||||
dleft_frac >= float_prior(float_prior(1.)),
|
||||
([this](){
|
||||
CGAL_USE(this);
|
||||
#if CGAL_MESH_3_PROTECTION_DEBUG & 4
|
||||
dump_c3t3(this->c3t3_, "dump-bug");
|
||||
#endif
|
||||
return "the sampling of protecting balls is not possible";
|
||||
}()));
|
||||
#else
|
||||
CGAL_assertion(n==0 || dleft_frac >= float_prior(float_prior(1.)));
|
||||
#endif
|
||||
}
|
||||
|
||||
// Launch balls
|
||||
|
|
|
|||
Loading…
Reference in New Issue