Commit 5b0ef7ea authored by Max Kellermann's avatar Max Kellermann Committed by Max Kellermann

util/AllocatedArray: add types pointer, const_pointer

parent ab53c414
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment