diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-05-18 13:27:04 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-05-18 16:30:25 -0400 |
commit | 88581b9d505342e20d03cc4c6557d30c3f66f0f5 (patch) | |
tree | 1b777eee727acd3ca620c6287352e8e29e72045c /src/eval.c | |
parent | ded8567215afa498295660d123159f26210e066a (diff) | |
download | bfs-88581b9d505342e20d03cc4c6557d30c3f66f0f5.tar.xz |
Use bfs_bug("...") over assert(!"...")
Diffstat (limited to 'src/eval.c')
-rw-r--r-- | src/eval.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -142,7 +142,7 @@ bool bfs_expr_cmp(const struct bfs_expr *expr, long long n) { return n > expr->num; } - assert(!"Invalid comparison mode"); + bfs_bug("Invalid comparison mode"); return false; } @@ -476,7 +476,7 @@ bool eval_flags(const struct bfs_expr *expr, struct bfs_eval *state) { return (flags & set) || (flags & clear) != clear; } - assert(!"Invalid comparison mode"); + bfs_bug("Invalid comparison mode"); return false; } @@ -626,7 +626,7 @@ bool eval_perm(const struct bfs_expr *expr, struct bfs_eval *state) { return !(mode & target) == !target; } - assert(!"Invalid comparison mode"); + bfs_bug("Invalid comparison mode"); return false; } |