Remove: replace custom span with std::span
This commit is contained in:

committed by
Patric Stout

parent
bb49112784
commit
fd073a2810
@@ -85,7 +85,7 @@ char *strecpy(char *dst, const char *src, const char *last)
|
||||
* @param data Array to format
|
||||
* @return Converted string.
|
||||
*/
|
||||
std::string FormatArrayAsHex(span<const byte> data)
|
||||
std::string FormatArrayAsHex(std::span<const byte> data)
|
||||
{
|
||||
std::string str;
|
||||
str.reserve(data.size() * 2 + 1);
|
||||
|
Reference in New Issue
Block a user