BAN: Add value_type to String{,View}
This commit is contained in:
parent
1fc2e43881
commit
a5cdf0640f
|
|
@ -14,6 +14,7 @@ namespace BAN
|
|||
{
|
||||
public:
|
||||
using size_type = size_t;
|
||||
using value_type = char;
|
||||
using iterator = IteratorSimple<char, String>;
|
||||
using const_iterator = ConstIteratorSimple<char, String>;
|
||||
static constexpr size_type sso_capacity = 15;
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ namespace BAN
|
|||
{
|
||||
public:
|
||||
using size_type = size_t;
|
||||
using value_type = char;
|
||||
using const_iterator = ConstIteratorSimple<char, StringView>;
|
||||
|
||||
public:
|
||||
|
|
|
|||
Loading…
Reference in New Issue