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

This commit is contained in:
Max Kellermann 2023-10-02 21:35:17 +02:00 committed by Max Kellermann
parent 5dda4084df
commit 63d865666e
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
template<typename T, std::size_t CAPACITY>
class BasicStringBuffer {
public:
typedef T value_type;
using value_type = T;
using reference = T &;
using pointer = T *;
using const_pointer = const T *;