diff mbox series

remove unsed field for EXPR_GENERIC

Message ID 20200725205639.73715-1-luc.vanoostenryck@gmail.com (mailing list archive)
State Mainlined, archived
Headers show
Series remove unsed field for EXPR_GENERIC | expand

Commit Message

Luc Van Oostenryck July 25, 2020, 8:56 p.m. UTC
The field 'result' have been committed by inadvertence in the
initial commit. Remove it now.

Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
---
 expression.h | 1 -
 1 file changed, 1 deletion(-)
diff mbox series

Patch

diff --git a/expression.h b/expression.h
index 07fe8502e15e..3e9e9d852c27 100644
--- a/expression.h
+++ b/expression.h
@@ -261,7 +261,6 @@  struct expression {
 			struct expression *control;
 			struct expression *def;
 			struct type_expression *map;
-			struct expression *result;
 		};
 	};
 };