diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-17 02:12:02 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-17 02:12:02 +0200 |
commit | 78bf3e039d77e3eb0d5e394273adb69b2b70a76d (patch) | |
tree | 0ed6f2058e348dbd18b0baa9c4ee442206191096 /lib | |
parent | 2367a8b63c3bcfe62d1aaf7d82c0ab3622f3b16c (diff) | |
download | fwd-78bf3e039d77e3eb0d5e394273adb69b2b70a76d.tar.gz fwd-78bf3e039d77e3eb0d5e394273adb69b2b70a76d.zip |
detect leaks
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fwdlib.hpp | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/lib/fwdlib.hpp b/lib/fwdlib.hpp index 623dc13..51450c1 100644 --- a/lib/fwdlib.hpp +++ b/lib/fwdlib.hpp @@ -10,7 +10,9 @@ using namespace std; -static void fwd_getline(auto next) +typedef const char *fwd_err_t; + +static fwd_err_t fwd_getline(auto next) { if (cin.eof()) return next(optional<string>{}); @@ -21,13 +23,13 @@ static void fwd_getline(auto next) return next(optional<string>{}); } -static void fwd_foreach(auto container, auto next) +static fwd_err_t fwd_foreach(auto container, auto next) { for (auto &n : container) next(n); } -static void fwd_some(auto option, auto ok, auto fail) +static fwd_err_t fwd_some(auto option, auto ok, auto fail) { if (option) return ok(std::move(option.value())); @@ -35,12 +37,12 @@ static void fwd_some(auto option, auto ok, auto fail) return fail(); } -static void fwd_copy(auto n, auto next) +static fwd_err_t fwd_copy(auto n, auto next) { return next(n, n); } -static void fwd_null(auto *x, auto fail, auto ok) +static fwd_err_t fwd_null(auto *x, auto fail, auto ok) { if (x) return ok(*x); @@ -48,18 +50,19 @@ static void fwd_null(auto *x, auto fail, auto ok) return fail(); } -static void fwd_insert(auto container, auto elem, auto next) +static fwd_err_t fwd_insert(auto container, auto elem, auto next) { container.insert(std::move(elem)); return next(std::move(container)); } -static void fwd_println(auto elem) +static fwd_err_t fwd_println(auto elem) { cout << elem << endl; + return nullptr; } -static void fwd_intalloc(auto ok) +static fwd_err_t fwd_intalloc(auto ok) { int *p = new int{20}; ok(p); |