aboutsummaryrefslogtreecommitdiff
path: root/boot/ast.cc
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-08-18 13:31:47 +0200
committerEugen Wissner <belka@caraus.de>2026-08-18 13:31:47 +0200
commit4f77ad5d019618893c59a0f8d5bfa6b98e50a3be (patch)
treed9e01460ecf94a491be476fbca76b6608276d967 /boot/ast.cc
parent4b7c87a9b53f5317e9f7982bd779d53a66960bdc (diff)
downloadelna-4f77ad5d019618893c59a0f8d5bfa6b98e50a3be.tar.gz
Make Int and Word aliases to fixed-size types
Diffstat (limited to 'boot/ast.cc')
-rw-r--r--boot/ast.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/boot/ast.cc b/boot/ast.cc
index fb1e276..9b21f56 100644
--- a/boot/ast.cc
+++ b/boot/ast.cc
@@ -196,7 +196,7 @@ namespace elna::boot
__builtin_unreachable();
}
- void empty_visitor::visit(literal<unsigned char> *)
+ void empty_visitor::visit(literal<std::uint32_t> *)
{
__builtin_unreachable();
}
@@ -517,7 +517,7 @@ namespace elna::boot
{
}
- void walking_visitor::visit(literal<unsigned char> *)
+ void walking_visitor::visit(literal<std::uint32_t> *)
{
}