From 0d41d68b8d907cf1246645a01b43b839e5dbe44b Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Tue, 27 Jul 2021 17:52:54 -0400 Subject: expr: Remove unneeded forward declaration of struct expr --- expr.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/expr.h b/expr.h index c8c8ce0..c25d1ca 100644 --- a/expr.h +++ b/expr.h @@ -32,11 +32,6 @@ #include #include -/** - * A command line expression. - */ -struct expr; - /** * Possible types of numeric comparison. */ @@ -95,6 +90,9 @@ enum size_unit { SIZE_PB, }; +/** + * A command line expression. + */ struct expr { /** The function that evaluates this expression. */ eval_fn *eval; -- cgit v1.2.3