summaryrefslogtreecommitdiffhomepage
path: root/include/GenericsLibrary/iterator.nhh
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-27 01:34:03 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-27 01:34:03 +0100
commit81c082643568ef4507c92c6f8c4d7f2778274aa6 (patch)
tree42f0d34b2535540074eb0766cbb71be93ed648f6 /include/GenericsLibrary/iterator.nhh
parentfe99a16c6d125186a08ce8a45b74684df24692f5 (diff)
[FEAT] Fix GenericsLibrary implementation for Nectar.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/GenericsLibrary/iterator.nhh')
-rw-r--r--include/GenericsLibrary/iterator.nhh4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/GenericsLibrary/iterator.nhh b/include/GenericsLibrary/iterator.nhh
index ecc82ed..f2d46e0 100644
--- a/include/GenericsLibrary/iterator.nhh
+++ b/include/GenericsLibrary/iterator.nhh
@@ -26,7 +26,7 @@ impl iterator : trait iterator_traits
{
let begin(let self)
{
- must_pass(self._begin != self._end);
+ must_pass(self._begin !== self._end);
let begin := self._begin;
return begin;
@@ -34,7 +34,7 @@ impl iterator : trait iterator_traits
let end(let self)
{
- must_pass(_begin != _end);
+ must_pass(_begin !== _end);
let end := self._end;
return end;