cgal/Linear_cell_complex/include/CGAL
Mael Rouxel-Labbé 590ddf8015 Various fixes for pmaps:
- Use `value_type` when the returned type is not a reference
- Enforce `reference = value_type` if the returned type is not
  a reference (to avoid `typename PM::reference r = get(m, k)`,
  which will take a ref to a temporary if the `reference`
  typedef is an actualy reference)
- Do not use `put_get_helper` if the property map is not a `lvalue`
  **mutable** property map: the `put()` is `map[k] = v`, which
  is broken if `operator[]` does not return a reference
- The concept `boost::lvalue_property_map_tag` requires `operator[](key)`,
  not a reference in `get(map, key)`. You can have a readable property map
  returning a reference through its `get(map, key)`, but if there is
  no `operator[]`, it's just a `boost::readable_property_map_tag`
- Some const correctness to avoid copying maps with state
  or heavy keys in `get(map, key)` / `put(map, key, value)`
- Base the category of a wrapping pmap on what it offers instead
  of just forwarding the base property map's category
- Tried to do something like mutable lvalue pmap:
  * `value_type& operator[](key&)`
  * `ref get(map, const key&)`
  * `put(map, const key&, const value_type&)`
  and non-mutable lvalue pmap:
  * `const value_type& operator[](const key&)`
  * `ref get(map, const key&)`
  but not everything fits properly...
2021-10-08 15:38:47 +02:00
..
boost/graph Various fixes for pmaps: 2021-10-08 15:38:47 +02:00
CMap_linear_cell_complex_storages.h extra run of the script to remove tabs and trailing whitespaces 2020-03-26 14:26:59 +01:00
Cell_attribute_with_point.h Typo in comments. 2020-02-12 10:33:57 +01:00
Cell_attribute_with_point_and_id.h extra run of the script to remove tabs and trailing whitespaces 2020-03-26 14:16:06 +01:00
GMap_linear_cell_complex_storages.h Bugfix 2020-04-27 18:55:25 +02:00
Linear_cell_complex.h Add forward declaration files for CMap, GMap, LCC, Polygonal_schema. Improve copy methods for CMap and GMap to deal with const and non const cases. 2020-04-27 18:52:22 +02:00
Linear_cell_complex_base.h Bugfix 2020-04-27 18:55:25 +02:00
Linear_cell_complex_bgl_min_items.h extra run of the script to remove tabs and trailing whitespaces 2020-03-26 14:16:06 +01:00
Linear_cell_complex_constructors.h extra run of the script to remove tabs and trailing whitespaces 2020-03-26 14:16:06 +01:00
Linear_cell_complex_for_bgl_combinatorial_map_helper.h extra run of the script to remove tabs and trailing whitespaces 2020-03-26 14:16:06 +01:00
Linear_cell_complex_for_combinatorial_map.h Add forward declaration files for CMap, GMap, LCC, Polygonal_schema. Improve copy methods for CMap and GMap to deal with const and non const cases. 2020-04-27 18:52:22 +02:00
Linear_cell_complex_for_generalized_map.h Add forward declaration files for CMap, GMap, LCC, Polygonal_schema. Improve copy methods for CMap and GMap to deal with const and non const cases. 2020-04-27 18:52:22 +02:00
Linear_cell_complex_fwd.h Remove deprecated in forward declaration. 2020-04-27 18:52:22 +02:00
Linear_cell_complex_incremental_builder.h First pass on removing license notice in header for LGPL files 2019-10-19 15:40:30 +02:00
Linear_cell_complex_min_items.h Add forward declaration files for CMap, GMap, LCC, Polygonal_schema. Improve copy methods for CMap and GMap to deal with const and non const cases. 2020-04-27 18:52:22 +02:00
Linear_cell_complex_operations.h extra run of the script to remove tabs and trailing whitespaces 2020-03-26 14:16:06 +01:00
Linear_cell_complex_traits.h Add forward declaration files for CMap, GMap, LCC, Polygonal_schema. Improve copy methods for CMap and GMap to deal with const and non const cases. 2020-04-27 18:52:22 +02:00
draw_linear_cell_complex.h Merge pull request #5336 from maxGimeno/GraphicsView-Use_opengl_4_1_context-maxGImeno 2021-02-05 16:07:32 +01:00