Make type_expression abstract

This commit is contained in:
2025-01-05 00:06:51 +01:00
parent 98c13f0be3
commit bbd38a5d26
6 changed files with 56 additions and 33 deletions

View File

@ -8,7 +8,7 @@
/* Creates an expression whose value is that of EXPR, converted to type TYPE.
This function implements all reasonable scalar conversions. */
tree convert(tree type, tree expr)
tree convert(tree /* type */, tree expr)
{
return expr;
}