exo/vapours: refactor member variables to m_ over this->

This commit is contained in:
Michael Scire
2021-10-09 15:40:06 -07:00
parent 5a38311ebf
commit 67a45c97ef
55 changed files with 846 additions and 847 deletions

View File

@@ -41,20 +41,20 @@ namespace ams::crypto {
};
static constexpr size_t Asn1IdentifierSize = util::size(Asn1Identifier);
private:
Impl impl;
Impl m_impl;
public:
Sha1Generator() { /* ... */ }
void Initialize() {
this->impl.Initialize();
m_impl.Initialize();
}
void Update(const void *data, size_t size) {
this->impl.Update(data, size);
m_impl.Update(data, size);
}
void GetHash(void *dst, size_t size) {
this->impl.GetHash(dst, size);
m_impl.GetHash(dst, size);
}
};