strat: use m_ for member variables

This commit is contained in:
Michael Scire
2021-10-10 00:14:06 -07:00
parent ce28591ab2
commit a595c232b9
425 changed files with 8531 additions and 8484 deletions

View File

@@ -26,32 +26,32 @@ namespace ams::os::impl {
class InterruptEventImpl {
private:
InterruptEventTargetImpl impl;
InterruptEventTargetImpl m_impl;
public:
explicit InterruptEventImpl(InterruptName name, EventClearMode clear_mode) : impl(name, clear_mode) { /* ... */ }
explicit InterruptEventImpl(InterruptName name, EventClearMode clear_mode) : m_impl(name, clear_mode) { /* ... */ }
void Clear() {
return this->impl.Clear();
return m_impl.Clear();
}
void Wait() {
return this->impl.Wait();
return m_impl.Wait();
}
bool TryWait() {
return this->impl.TryWait();
return m_impl.TryWait();
}
bool TimedWait(TimeSpan timeout) {
return this->impl.TimedWait(timeout);
return m_impl.TimedWait(timeout);
}
TriBool IsSignaled() {
return this->impl.IsSignaled();
return m_impl.IsSignaled();
}
NativeHandle GetHandle() const {
return this->impl.GetHandle();
return m_impl.GetHandle();
}
};