Silence -Wshadow and -Wmaybe-uninitialized warnings.

This commit is contained in:
Rohit Nirmal
2015-12-21 09:58:13 -06:00
parent 365a326798
commit aaa89d4f73
2 changed files with 5 additions and 2 deletions

View File

@ -128,7 +128,7 @@ static std::unique_ptr<IVolume> CreateVolumeFromCryptedWiiImage(std::unique_ptr<
struct SPartition
{
SPartition(u64 offset, u32 type) : offset(offset), type(type) {}
SPartition(u64 offset_, u32 type_) : offset(offset_), type(type_) {}
u64 offset;
u32 type;