[svn:parrot] r42857 - branches/cs_csr_merge/src/pmc

bacek at svn.parrot.org bacek at svn.parrot.org
Wed Dec 2 10:02:48 UTC 2009


Author: bacek
Date: Wed Dec  2 10:02:47 2009
New Revision: 42857
URL: https://trac.parrot.org/parrot/changeset/42857

Log:
Pacify compiler about default case in CallSignature.clone

Modified:
   branches/cs_csr_merge/src/pmc/callsignature.pmc

Modified: branches/cs_csr_merge/src/pmc/callsignature.pmc
==============================================================================
--- branches/cs_csr_merge/src/pmc/callsignature.pmc	Wed Dec  2 10:02:36 2009	(r42856)
+++ branches/cs_csr_merge/src/pmc/callsignature.pmc	Wed Dec  2 10:02:47 2009	(r42857)
@@ -1231,6 +1231,8 @@
                 cloned_cell = CREATE_PMC_CELL(INTERP);
                 CELL_PMC(cloned_cell) = CELL_PMC(cell);
                 break;
+              default:
+                break;
             }
             APPEND_CELL(dest, cloned_cell);
         }


More information about the parrot-commits mailing list