diff options
| author | Lioncash <mathew1800@gmail.com> | 2019-05-27 10:33:02 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2019-05-27 10:40:41 -0400 |
| commit | d220e33862c68404efb66f971d778fa6fdb762e1 (patch) | |
| tree | 5dedbae95925def62564f62334a1f975642fd6cd /Source/Core/DiscIO/VolumeVerifier.cpp | |
| parent | bf6948c1d42ddd7487c41d63d02c10052aaac054 (diff) | |
DiscIO/VolumeVerifier: Make no-argument overload of GetBiggestUsedOffset() const
The overload taking a partition is already a const member function, so
this one can be turned into one as well.
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 e7d325d918..9389ae0fbf 100644 --- a/Source/Core/DiscIO/VolumeVerifier.cpp +++ b/Source/Core/DiscIO/VolumeVerifier.cpp @@ -446,7 +446,7 @@ void VolumeVerifier::CheckDiscSize() } } -u64 VolumeVerifier::GetBiggestUsedOffset() +u64 VolumeVerifier::GetBiggestUsedOffset() const { std::vector<Partition> partitions = m_volume.GetPartitions(); if (partitions.empty()) |
