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>
|
template<typename T, std::size_t CAPACITY>
|
||||||
class BasicStringBuffer {
|
class BasicStringBuffer {
|
||||||
public:
|
public:
|
||||||
typedef T value_type;
|
using value_type = T;
|
||||||
using reference = T &;
|
using reference = T &;
|
||||||
using pointer = T *;
|
using pointer = T *;
|
||||||
using const_pointer = const T *;
|
using const_pointer = const T *;
|
||||||
|
Loading…
Reference in New Issue
Block a user