From 1c2fb173ea3b674207badc721556ad72962b266e Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Sun, 2 Aug 2026 17:05:34 +0200 Subject: Check array property accessbility at compile time --- boot/evaluator.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'boot/evaluator.cc') diff --git a/boot/evaluator.cc b/boot/evaluator.cc index 097b6a5..8f414fa 100644 --- a/boot/evaluator.cc +++ b/boot/evaluator.cc @@ -459,7 +459,7 @@ namespace elna::boot { switch (operation) { - using enum binary_operator; + using enum binary_operator; case equals: return constant_value{ true }; case not_equals: @@ -472,7 +472,7 @@ namespace elna::boot { switch (operation) { - using enum binary_operator; + using enum binary_operator; case sum: if constexpr (std::is_same_v) { -- cgit v1.2.3