cgal/STL_Extension
Laurent Rineau ad30644ed5 add CGAL::Scope_exit
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();
      }
    });
```
2024-04-26 16:10:23 +02:00
..
benchmark Misc minor fixes/improvements 2022-09-14 14:08:23 +02:00
doc/STL_Extension Merge branch 'master' into feature/issue_7395 2023-08-18 11:10:42 +02:00
examples/STL_Extension boost::variant ---> std::variant 2023-06-15 10:57:10 +02:00
include/CGAL add CGAL::Scope_exit 2024-04-26 16:10:23 +02:00
package_info/STL_Extension
test/STL_Extension Merge branch 'master' into 'sloriot/CGAL-using_c++17_stl' 2023-08-14 14:19:25 +02:00