We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 297b7e6 commit ddef6a0Copy full SHA for ddef6a0
include/etl/string.h
@@ -72,6 +72,7 @@ namespace etl
72
typedef istring interface_type;
73
74
typedef istring::value_type value_type;
75
+ typedef istring::size_type size_type;
76
77
static ETL_CONSTANT size_t MAX_SIZE = MAX_SIZE_;
78
@@ -261,7 +262,7 @@ namespace etl
261
262
};
263
264
template <size_t MAX_SIZE_>
- ETL_CONSTANT size_t string<MAX_SIZE_>::MAX_SIZE;
265
+ ETL_CONSTANT typename string<MAX_SIZE_>::size_type string<MAX_SIZE_>::MAX_SIZE;
266
267
//***************************************************************************
268
/// A string implementation that uses a fixed size external buffer.
0 commit comments