Codechange: Pass span instead of vector to HaveDParamChanged.

This commit is contained in:
Peter Nelson
2024-07-30 12:23:50 +01:00
committed by Peter Nelson
parent 9eb28def57
commit b449839538
2 changed files with 2 additions and 2 deletions

View File

@@ -100,7 +100,7 @@ void SetDParamStr(size_t n, std::string &&str);
void CopyInDParam(const std::span<const StringParameterBackup> backup);
void CopyOutDParam(std::vector<StringParameterBackup> &backup, size_t num);
bool HaveDParamChanged(const std::vector<StringParameterBackup> &backup);
bool HaveDParamChanged(const std::span<const StringParameterBackup> backup);
uint64_t GetDParam(size_t n);