diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-17 20:25:27 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-17 20:25:27 +0200 |
commit | f9c5985ce715cb2b353d87a19fed71d9904b60ed (patch) | |
tree | ca0154309773ba8acbd470d65a93d833725330af /lib | |
parent | 78bf3e039d77e3eb0d5e394273adb69b2b70a76d (diff) | |
download | fwd-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.hpp | 7 |
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 */ |