summaryrefslogtreecommitdiffhomepage
path: root/Private/FSKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-09 08:37:29 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-09 08:37:29 +0100
commit3e607e871b1b20e14527845a511ae2a6739fcaac (patch)
tree973c617f634367af2229e2ad2c10bce3e3df6aaa /Private/FSKit
parent5bf99218f0cad958868e662cf99192811060f95f (diff)
See below.
- HCoreKrnl: - Improve interrupt handler for AMD64 targets. - Wrapped AHCI and PE types into a namespace. - Replace L0 with the label MainLoop. - Reworked C++Kit and NetBoot modules. - Put INewFSIterator constructor as explicit. Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/FSKit')
-rw-r--r--Private/FSKit/NewFSIndexer.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Private/FSKit/NewFSIndexer.hxx b/Private/FSKit/NewFSIndexer.hxx
index e66e4913..023ebdc0 100644
--- a/Private/FSKit/NewFSIndexer.hxx
+++ b/Private/FSKit/NewFSIndexer.hxx
@@ -13,7 +13,7 @@ namespace HCore {
namespace Indexer {
class INewFSIterator;
-using IndexElement = voidPtr;
+using IndexElement = VoidPtr;
///
/// @name INewFSIterator
@@ -22,7 +22,7 @@ using IndexElement = voidPtr;
class INewFSIterator {
public:
- INewFSIterator() = default;
+ explicit INewFSIterator() = default;
virtual ~INewFSIterator() = default;
public: