diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-18 18:37:00 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-18 18:37:00 +0200 |
commit | 3d7713b5af2e1229949b31dcce74c7aba1fe042a (patch) | |
tree | be308e9a60ff129d699ac6b515b81c66576e57d9 /lib | |
parent | 17c7dbd9cec96862384c4323a0e36eb0558b580d (diff) | |
download | fwd-3d7713b5af2e1229949b31dcce74c7aba1fe042a.tar.gz fwd-3d7713b5af2e1229949b31dcce74c7aba1fe042a.zip |
add move queues
+ Returning blocks don't want to show moves for subsequent statements,
but do want to show them for possible closure callers above.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fwdlib.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/fwdlib.hpp b/lib/fwdlib.hpp index 8e6be16..6af8441 100644 --- a/lib/fwdlib.hpp +++ b/lib/fwdlib.hpp @@ -71,4 +71,10 @@ static fwd_err_t fwd_intalloc(auto ok) return ok(p); } +static fwd_err_t fwd_destroy(auto /* a */) +{ + /* RAII destroys a */ + return nullptr; +} + #endif /* FWDLIB_HPP */ |