aboutsummaryrefslogtreecommitdiff
path: root/boot/ast.cc
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-08-21 00:05:03 +0200
committerEugen Wissner <belka@caraus.de>2026-08-21 00:05:03 +0200
commit39269cc68a32f6e1a7524b00da36a1fe4cc7fb8b (patch)
tree9558cd6107d60e22127faeddbdeac5031ee2fdbe /boot/ast.cc
parent4f77ad5d019618893c59a0f8d5bfa6b98e50a3be (diff)
downloadelna-39269cc68a32f6e1a7524b00da36a1fe4cc7fb8b.tar.gz
Implement Single and Double floats
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 9b21f56..287b7aa 100644
--- a/boot/ast.cc
+++ b/boot/ast.cc
@@ -186,7 +186,7 @@ namespace elna::boot
__builtin_unreachable();
}
- void empty_visitor::visit(literal<double> *)
+ void empty_visitor::visit(literal<float_literal> *)
{
__builtin_unreachable();
}
@@ -509,7 +509,7 @@ namespace elna::boot
{
}
- void walking_visitor::visit(literal<double> *)
+ void walking_visitor::visit(literal<float_literal> *)
{
}