aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/expression.h
diff options
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2022-06-05 18:29:41 +0200
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2022-06-05 18:30:32 +0200
commitd9c17b4dc21ef531d673d1d6e510347e141e6801 (patch)
tree121a0e8ff0b7fe17992524128a8e9ba428187449 /expression.h
parent56afb504c0b917a2563b44fabe2f1e92e4c14287 (diff)
parent187285b32ea71c25419a09724d9fe5f1b46aab2e (diff)
downloadsparse-dev-d9c17b4dc21ef531d673d1d6e510347e141e6801.tar.gz
Merge branch 'cast-value'
* small improvements to cast_value()
Diffstat (limited to 'expression.h')
-rw-r--r--expression.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/expression.h b/expression.h
index f733c076..8bf40d32 100644
--- a/expression.h
+++ b/expression.h
@@ -337,7 +337,6 @@ struct token *compound_statement(struct token *, struct statement *);
#define constant_expression(token,tree) conditional_expression(token, tree)
/* Cast folding of constant values.. */
-void cast_value(struct expression *expr, struct symbol *newtype,
- struct expression *old, struct symbol *oldtype);
+void cast_value(struct expression *expr, struct symbol *newtype, struct expression *old);
#endif