summaryrefslogtreecommitdiffhomepage
path: root/Private/KernelKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-27 17:06:30 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-27 17:06:30 +0100
commit2f7c48ef9172ba48fa177600a12ab0d51cb9e566 (patch)
tree96841cb24ca8756b1bc30ea50f9664245a3479fb /Private/KernelKit
parentb340547eb2d6db9eddd8bdbf0e473f9fe993bec4 (diff)
Kernel: Fix ABI for MP-CC, rename FilesystemIndexer to
IndexableProperty. Public/ZipKit: Add impl for deflate/inflate. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/KernelKit')
-rw-r--r--Private/KernelKit/Device.hpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/Private/KernelKit/Device.hpp b/Private/KernelKit/Device.hpp
index b117cf7f..4ae968c2 100644
--- a/Private/KernelKit/Device.hpp
+++ b/Private/KernelKit/Device.hpp
@@ -35,22 +35,19 @@ namespace hCore
DeviceInterface(const DeviceInterface<T> &) = default;
public:
- DeviceInterface<T> &operator<<(T Data)
+ DeviceInterface<T>& operator<<(T Data)
{
m_Out(Data);
return *this;
}
- DeviceInterface<T> &operator>>(T Data)
+ DeviceInterface<T>& operator>>(T Data)
{
m_In(Data);
return *this;
}
- virtual const char* Name() const
- {
- return ("DeviceInterface");
- }
+ virtual const char* Name() const { return "DeviceInterface"; }
operator bool() { return m_Out && m_In; }
bool operator!() { return !m_Out && !m_In; }