From fa57396e97302b25204d29dbef132a88cef45c80 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 27 May 2019 10:23:52 -0400 Subject: DiscIO/VolumeVerifier: In-class initialize members where applicable Removes redundant initializers from the constructor and provides initializers for all members that don't already have one for consistency (and deterministic initial state). --- Source/Core/DiscIO/VolumeVerifier.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/DiscIO/VolumeVerifier.cpp') diff --git a/Source/Core/DiscIO/VolumeVerifier.cpp b/Source/Core/DiscIO/VolumeVerifier.cpp index 653cbbaf9c..5b2b549e6a 100644 --- a/Source/Core/DiscIO/VolumeVerifier.cpp +++ b/Source/Core/DiscIO/VolumeVerifier.cpp @@ -50,7 +50,7 @@ VolumeVerifier::VolumeVerifier(const Volume& volume, Hashes hashes_to_calc : m_volume(volume), m_hashes_to_calculate(hashes_to_calculate), m_calculating_any_hash(hashes_to_calculate.crc32 || hashes_to_calculate.md5 || hashes_to_calculate.sha1), - m_started(false), m_done(false), m_progress(0), m_max_progress(volume.GetSize()) + m_max_progress(volume.GetSize()) { } -- cgit v1.2.3