util/AllocatedArray: use `using` instead of `typedef`

This commit is contained in:
Max Kellermann 2020-03-25 19:23:51 +01:00
parent 71e551df42
commit 7d7bd51bc0
1 changed files with 5 additions and 5 deletions

View File

@ -45,11 +45,11 @@ class AllocatedArray {
typedef WritableBuffer<T> Buffer; typedef WritableBuffer<T> Buffer;
public: public:
typedef typename Buffer::size_type size_type; using size_type = typename Buffer::size_type;
typedef typename Buffer::reference reference; using reference = typename Buffer::reference;
typedef typename Buffer::const_reference const_reference; using const_reference = typename Buffer::const_reference;
typedef typename Buffer::iterator iterator; using iterator = typename Buffer::iterator;
typedef typename Buffer::const_iterator const_iterator; using const_iterator = typename Buffer::const_iterator;
protected: protected:
Buffer buffer{nullptr}; Buffer buffer{nullptr};