mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-29 22:15:17 -04:00
strat: use m_ for member variables
This commit is contained in:
parent
ce28591ab2
commit
a595c232b9
425 changed files with 8531 additions and 8484 deletions
|
@ -24,10 +24,10 @@ namespace ams::updater {
|
|||
public:
|
||||
static constexpr size_t SectorAlignment = 0x200;
|
||||
private:
|
||||
std::unique_ptr<fs::IStorage> storage;
|
||||
const fs::BisPartitionId partition_id;
|
||||
std::unique_ptr<fs::IStorage> m_storage;
|
||||
const fs::BisPartitionId m_partition_id;
|
||||
public:
|
||||
explicit BisAccessor(fs::BisPartitionId id) : partition_id(id) { /* ... */ }
|
||||
explicit BisAccessor(fs::BisPartitionId id) : m_partition_id(id) { /* ... */ }
|
||||
|
||||
public:
|
||||
Result Initialize();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue