summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/NeKit/ArrayList.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-02 16:12:12 -0500
committerGitHub <noreply@github.com>2025-12-02 16:12:12 -0500
commitb0a41001efe099f0c0bb9d16d64a81f7425edc8c (patch)
tree8f53fef512789b75c6ee80d3b240a635c071fa22 /src/kernel/NeKit/ArrayList.h
parent14180e1e4e94da21a355aa9dd7cbc5f1ac2f713c (diff)
parent825b4f09ca6f551551c4f3be5d72517eab504860 (diff)
Merge pull request #101 from nekernel-org/develop
chore: new Kernel APIs.
Diffstat (limited to 'src/kernel/NeKit/ArrayList.h')
-rw-r--r--src/kernel/NeKit/ArrayList.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/NeKit/ArrayList.h b/src/kernel/NeKit/ArrayList.h
index d3225a50..5787fe98 100644
--- a/src/kernel/NeKit/ArrayList.h
+++ b/src/kernel/NeKit/ArrayList.h
@@ -28,7 +28,7 @@ class ArrayList final {
return fList[index];
}
- operator bool() { return fList; }
+ explicit operator bool() { return fList; }
SizeT Count() const { return fLen; }