diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-10-21 16:02:30 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-10-21 16:08:14 -0400 |
commit | 4a08c0300cf6b0ee3bb5f755007641635ba21f9d (patch) | |
tree | 4fcce4cf80bc6575eb053c6691398d04be1eb917 /expr.h | |
parent | 4e38f139f92b8b3729f82c37f0904c2b77d3eb58 (diff) | |
download | bfs-4a08c0300cf6b0ee3bb5f755007641635ba21f9d.tar.xz |
parse: Keep track of what files are already open
Fixes #22
Diffstat (limited to 'expr.h')
-rw-r--r-- | expr.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -219,9 +219,7 @@ void dump_expr(CFILE *cfile, const struct expr *expr, bool verbose); /** * Free an expression tree. - * - * @return 0 if successful, -1 on error. */ -int free_expr(struct expr *expr); +void free_expr(struct expr *expr); #endif // EXPR_H |