util/StringBuffer: use `using` instead of `typedef`
This commit is contained in:
parent
5dda4084df
commit
63d865666e
|
@ -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 *;
|
||||
|
|
Loading…
Reference in New Issue