aboutsummaryrefslogtreecommitdiff
path: root/boot/evaluator.cc
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-08-14 23:14:38 +0200
committerEugen Wissner <belka@caraus.de>2026-08-14 23:14:38 +0200
commit33ae72a3c73f6219be86715e8da71ed345f6077c (patch)
tree1c6c98be816508e9231fa1ada3f79ec940ab1cf1 /boot/evaluator.cc
parentd696abc97143061bf2abb05922188e12b59306c1 (diff)
downloadelna-33ae72a3c73f6219be86715e8da71ed345f6077c.tar.gz
Map Int and Word to hardware word sizes
Diffstat (limited to 'boot/evaluator.cc')
-rw-r--r--boot/evaluator.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/evaluator.cc b/boot/evaluator.cc
index 07b2953..b37d1fa 100644
--- a/boot/evaluator.cc
+++ b/boot/evaluator.cc
@@ -26,7 +26,7 @@ along with GCC; see the file COPYING3. If not see
namespace elna::boot
{
non_constant_expression_error::non_constant_expression_error(const source_position position, payload_type payload)
- : error(position), payload(std::move(payload))
+ : diagnostic(position), payload(std::move(payload))
{
}