diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2026-04-11 14:55:41 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-11 14:55:41 -0500 |
| commit | 33f62b0f9f36a3dfccc3ecfc13358899d0cc8036 (patch) | |
| tree | 270bf5e13f299486c05d1f681e96dc5b774cc1e7 /Source/Core/DiscIO/VolumeVerifier.cpp | |
| parent | 27e09633dee06f25d76b2e84048e80c57d6e6a87 (diff) | |
| parent | f6a67aa6e722350db3fc778e4f881cb60090faa1 (diff) | |
Merge pull request #14500 from Sintendo/span2
Replace `const std::vector&` arguments with `std::span`
Diffstat (limited to 'Source/Core/DiscIO/VolumeVerifier.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeVerifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/VolumeVerifier.cpp b/Source/Core/DiscIO/VolumeVerifier.cpp index 7fd4ce2768..9ffeb63757 100644 --- a/Source/Core/DiscIO/VolumeVerifier.cpp +++ b/Source/Core/DiscIO/VolumeVerifier.cpp @@ -213,7 +213,7 @@ static std::vector<u8> ParseHash(const char* str) return hash; } -std::vector<RedumpVerifier::PotentialMatch> RedumpVerifier::ScanDatfile(const std::vector<u8>& data, +std::vector<RedumpVerifier::PotentialMatch> RedumpVerifier::ScanDatfile(std::span<const u8> data, const std::string& system) { pugi::xml_document doc; |
