util/AllocatedArray: add types pointer, const_pointer

This commit is contained in:
Max Kellermann 2020-11-17 21:12:59 +01:00 committed by Max Kellermann
parent ab53c414bc
commit 5b0ef7ea98

View File

@ -48,6 +48,8 @@ public:
using size_type = typename Buffer::size_type;
using reference = typename Buffer::reference;
using const_reference = typename Buffer::const_reference;
using pointer = typename Buffer::pointer;
using const_pointer = typename Buffer::const_pointer;
using iterator = typename Buffer::iterator;
using const_iterator = typename Buffer::const_iterator;