diff options
| author | Christian Cunningham <cc@local.lan> | 2025-03-08 00:34:41 -0800 |
|---|---|---|
| committer | Christian Cunningham <cc@local.lan> | 2025-03-08 00:34:41 -0800 |
| commit | 88063160c9c9ff40f4fd006741ea1107b7e6a328 (patch) | |
| tree | d57b0b8eb7bbfb0ddeb825b4352cba1ced1d5567 /include/lib/monad.h | |
| parent | eff7dcfa89b3735a240391fcdf3332fb051bcb6d (diff) | |
Fix missing dependency
Wasn't caught before as all usages include this anyway
Diffstat (limited to 'include/lib/monad.h')
| -rw-r--r-- | include/lib/monad.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/lib/monad.h b/include/lib/monad.h index 4a68e0a..74db079 100644 --- a/include/lib/monad.h +++ b/include/lib/monad.h @@ -1,6 +1,8 @@ #ifndef INC_LIB_MONAD_H #define INC_LIB_MONAD_H +#include <lib/bool.h> + struct Result { void* data; bool_t success; |
