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;
public:
typedef typename Buffer::size_type size_type;
typedef typename Buffer::reference reference;
typedef typename Buffer::const_reference const_reference;
typedef typename Buffer::iterator iterator;
typedef typename Buffer::const_iterator const_iterator;
using size_type = typename Buffer::size_type;
using reference = typename Buffer::reference;
using const_reference = typename Buffer::const_reference;
using iterator = typename Buffer::iterator;
using const_iterator = typename Buffer::const_iterator;
protected:
Buffer buffer{nullptr};