diff options
author | Christian C <cc@localhost> | 2025-03-08 00:34:41 -0800 |
---|---|---|
committer | Christian C <cc@localhost> | 2025-03-08 00:34:41 -0800 |
commit | 8e1541680d15a5489089bbe367892797fa59c8f2 (patch) | |
tree | d57b0b8eb7bbfb0ddeb825b4352cba1ced1d5567 /include | |
parent | cf82fccd175e7276e97434985b345b4fcc6229ce (diff) |
Fix missing dependency
Wasn't caught before as all usages include this anyway
Diffstat (limited to 'include')
-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; |