mirror of https://github.com/CGAL/cgal
This
vector<const Point_d*> data;
is no longer needed after being `.clear()`ed at the end of `build()`.
This can save a good amount of memory, a `Point_d*` on a 64-bit system
is 8 bytes; almost as large as a typical 3-float `Point_d`.
There's no point keeping its capacity, since any call to `build()`
will efficiently `.reserve()` it anyway.
|
||
|---|---|---|
| .. | ||
| benchmark/Spatial_searching | ||
| doc/Spatial_searching | ||
| examples/Spatial_searching | ||
| include/CGAL | ||
| package_info/Spatial_searching | ||
| test/Spatial_searching | ||
| TODO | ||