From 8a8c8e377b114192f4f024b698bdfe758e52a91b Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Sat, 15 Dec 2012 18:33:02 +0000 Subject: [PATCH] gcc-4.6 warning fix git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@13972 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Source/Modules/php.cxx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/Modules/php.cxx b/Source/Modules/php.cxx index 01622f4ce..5c3ce283e 100644 --- a/Source/Modules/php.cxx +++ b/Source/Modules/php.cxx @@ -1091,9 +1091,6 @@ public: int min_num_of_arguments = emit_num_required(l); int max_num_of_arguments = emit_num_arguments(l); - // For a function with default arguments, we end up with the fullest - // parmlist in full_parmlist. - ParmList *full_parmlist = l; Hash *ret_types = NewHash(); Setattr(ret_types, d, d); @@ -1126,7 +1123,6 @@ public: if (num_arguments > max_num_of_arguments) { max_num_of_arguments = num_arguments; - full_parmlist = l2; } o = Getattr(o, "sym:nextSibling"); }