From 3f690eacb1340307f906d041b0c7fd3f6b0e3ede Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 13 Feb 2011 15:28:49 +0900 Subject: [PATCH] Fix another double insertion of a symbol. --- tools/qfcc/source/method.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/qfcc/source/method.c b/tools/qfcc/source/method.c index cfdfff43c..fc4a8a1c0 100644 --- a/tools/qfcc/source/method.c +++ b/tools/qfcc/source/method.c @@ -266,7 +266,6 @@ send_message (int super) sym = new_symbol_type (sm_name, sm_type); sym = function_symbol (sym, 0, 1); make_function (sym, 0, st_extern); - symtab_addsymbol (pr.symtab, sym); } return new_symbol_expr (sym); }