aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-17 20:25:27 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-17 20:25:27 +0200
commitf9c5985ce715cb2b353d87a19fed71d9904b60ed (patch)
treeca0154309773ba8acbd470d65a93d833725330af /lib
parent78bf3e039d77e3eb0d5e394273adb69b2b70a76d (diff)
downloadfwd-f9c5985ce715cb2b353d87a19fed71d9904b60ed.tar.gz
fwd-f9c5985ce715cb2b353d87a19fed71d9904b60ed.zip
improve codegen
+ Probably kind of silly since I'll probably not use the C++ backend in the future but at least it's a bit easier to read what's going on + Total move checking doesn't seem to work in if statements, will have to fix at some point
Diffstat (limited to 'lib')
-rw-r--r--lib/fwdlib.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/fwdlib.hpp b/lib/fwdlib.hpp
index 51450c1..8e6be16 100644
--- a/lib/fwdlib.hpp
+++ b/lib/fwdlib.hpp
@@ -26,7 +26,10 @@ static fwd_err_t fwd_getline(auto next)
static fwd_err_t fwd_foreach(auto container, auto next)
{
for (auto &n : container)
- next(n);
+ if (auto e = next(n))
+ return e;
+
+ return nullptr;
}
static fwd_err_t fwd_some(auto option, auto ok, auto fail)
@@ -65,7 +68,7 @@ static fwd_err_t fwd_println(auto elem)
static fwd_err_t fwd_intalloc(auto ok)
{
int *p = new int{20};
- ok(p);
+ return ok(p);
}
#endif /* FWDLIB_HPP */