mirror of https://github.com/CGAL/cgal
Example of use:
```c++
Scope_exit guard{[&] {
for(auto v : region_vertices) {
v->clear_mark(Vertex_marker::REGION_BORDER);
v->clear_mark(Vertex_marker::REGION_INSIDE);
}
}};
```
with CTAD, or:
```c++
auto cleanup_tds_data = make_scope_exit([&] {
for(auto c : cells) {
c->tds_data().clear();
}
});
```
|
||
|---|---|---|
| .. | ||
| benchmark | ||
| doc/STL_Extension | ||
| examples/STL_Extension | ||
| include/CGAL | ||
| package_info/STL_Extension | ||
| test/STL_Extension | ||