diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-11-30 10:51:45 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-11-30 11:59:26 -0500 |
commit | 1d68b43f1554ee82b3ac5772534a5ecbd57855a7 (patch) | |
tree | 6d9fbcf82670f0221c7c3374b9668b747f1488c1 /src/expr.h | |
parent | 6961c9a4c2fe8612db222bfd1693e38f7a43a2cd (diff) | |
download | bfs-1d68b43f1554ee82b3ac5772534a5ecbd57855a7.tar.xz |
expr: Remove the singleton bfs_{true,false} expressions
Diffstat (limited to 'src/expr.h')
-rw-r--r-- | src/expr.h | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -202,11 +202,6 @@ struct bfs_expr { }; }; -/** Singleton true expression instance. */ -extern struct bfs_expr bfs_true; -/** Singleton false expression instance. */ -extern struct bfs_expr bfs_false; - /** * Create a new expression. */ |