Merge pull request #5981 from lrineau/Voronoi_diagram_2-fix_Handle_adaptor-issue_5961-GF

VD_2: Make Handle_adaptor a model of Handle
This commit is contained in:
Laurent Rineau 2021-09-20 17:02:34 +02:00
commit e62f836e27
1 changed files with 2 additions and 0 deletions

View File

@ -33,6 +33,8 @@ class Handle_adaptor
typedef T& reference;
typedef const T* const_pointer;
typedef const T& const_reference;
typedef void iterator_category;
typedef std::ptrdiff_t difference_type;
public:
Handle_adaptor() : t() {}