summaryrefslogtreecommitdiffhomepage
path: root/Private/NewBoot/BootKit
diff options
context:
space:
mode:
Diffstat (limited to 'Private/NewBoot/BootKit')
-rw-r--r--Private/NewBoot/BootKit/Arch/AHCI.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Private/NewBoot/BootKit/Arch/AHCI.hxx b/Private/NewBoot/BootKit/Arch/AHCI.hxx
index 32fe033c..f4e635c7 100644
--- a/Private/NewBoot/BootKit/Arch/AHCI.hxx
+++ b/Private/NewBoot/BootKit/Arch/AHCI.hxx
@@ -24,10 +24,10 @@ class BDeviceAHCI final {
HCore::Boolean mErr{false};
HCore::Boolean mDetected{false};
- operator bool() { return !mErr; }
+ operator bool() { return !this->mErr; }
};
- operator bool() { return Leak().mDetected; }
+ operator bool() { return this->Leak().mDetected; }
BDeviceAHCI& Read(HCore::WideChar* Buf, const HCore::SizeT& SecCount);
BDeviceAHCI& Write(HCore::WideChar* Buf, const HCore::SizeT& SecCount);