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

committed by
Patric Stout

parent
bb49112784
commit
fd073a2810
@@ -155,7 +155,7 @@ void SetDParamMaxDigits(size_t n, uint count, FontSize size)
|
||||
* Copy the parameters from the backup into the global string parameter array.
|
||||
* @param backup The backup to copy from.
|
||||
*/
|
||||
void CopyInDParam(const span<const StringParameterBackup> backup)
|
||||
void CopyInDParam(const std::span<const StringParameterBackup> backup)
|
||||
{
|
||||
for (size_t i = 0; i < backup.size(); i++) {
|
||||
auto &value = backup[i];
|
||||
|
Reference in New Issue
Block a user