From 0cef986e6958a0a6a7e94e8256b0039709aed56b Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 6 Dec 2024 20:00:42 +0200 Subject: add trailing closures + Useful for guard statements, not entirely sure about the final syntax but at least they're possible --- src/lower.c | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'src/lower.c') diff --git a/src/lower.c b/src/lower.c index 35d16fe..4b9fae9 100644 --- a/src/lower.c +++ b/src/lower.c @@ -123,6 +123,11 @@ static int lower_type_construct(struct type *type) static int lower_type_callable(struct type *type) { + /* std::function has a slight overhead compared to just using auto here, + * but auto doesn't play well with recursive templates like with our + * fib.fwd example, so use std::function for now. Eventually I might + * instead write a C backend or something to have more control over the + * exact semantics, but for now this is good enough. */ printf("std::function