diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2021-07-27 17:52:54 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2021-07-27 17:52:54 -0400 |
commit | 0d41d68b8d907cf1246645a01b43b839e5dbe44b (patch) | |
tree | 24563920dd3c6f3215e205146cb35ced65a04760 /expr.h | |
parent | c2d2baf3e00fbedf213ca730a5931c236acfede7 (diff) | |
download | bfs-0d41d68b8d907cf1246645a01b43b839e5dbe44b.tar.xz |
expr: Remove unneeded forward declaration of struct expr
Diffstat (limited to 'expr.h')
-rw-r--r-- | expr.h | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -33,11 +33,6 @@ #include <time.h> /** - * A command line expression. - */ -struct expr; - -/** * Possible types of numeric comparison. */ enum cmp_flag { @@ -95,6 +90,9 @@ enum size_unit { SIZE_PB, }; +/** + * A command line expression. + */ struct expr { /** The function that evaluates this expression. */ eval_fn *eval; |