summaryrefslogtreecommitdiffstats
path: root/src/expression.c
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2009-04-01 12:56:44 +0200
committerPatrick McHardy <kaber@trash.net>2009-04-01 12:56:44 +0200
commit414fa58ae9f283c35c8510fc31f28ba77bb5fdf5 (patch)
treeebfd07d818c1d32e74d6679ccf421e5a681e92a9 /src/expression.c
parent4ffa6882a5eafa50625d0e4d49cdaafe69d7877c (diff)
expressions: kill seperate sym_type datatype for symbols
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'src/expression.c')
-rw-r--r--src/expression.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/expression.c b/src/expression.c
index 74579dd2..d854eb29 100644
--- a/src/expression.c
+++ b/src/expression.c
@@ -188,7 +188,6 @@ static void symbol_expr_print(const struct expr *expr)
static void symbol_expr_clone(struct expr *new, const struct expr *expr)
{
- new->sym_type = expr->sym_type;
new->scope = expr->scope;
new->identifier = xstrdup(expr->identifier);
}