[svn:parrot] r40547 - trunk/src/dynpmc

NotFound at svn.parrot.org NotFound at svn.parrot.org
Fri Aug 14 17:40:39 UTC 2009


Author: NotFound
Date: Fri Aug 14 17:40:36 2009
New Revision: 40547
URL: https://trac.parrot.org/parrot/changeset/40547

Log:
[cage] drop no longer useful "if (pass)" condition from gdbmhash class_init

Modified:
   trunk/src/dynpmc/gdbmhash.pmc

Modified: trunk/src/dynpmc/gdbmhash.pmc
==============================================================================
--- trunk/src/dynpmc/gdbmhash.pmc	Fri Aug 14 17:13:00 2009	(r40546)
+++ trunk/src/dynpmc/gdbmhash.pmc	Fri Aug 14 17:40:36 2009	(r40547)
@@ -92,13 +92,11 @@
 */
 
     VTABLE void class_init() {
-        if (pass) {
 #ifdef WIN32
-            /* RT #46393: What if libgdbm.so cannot be loaded */
-            /* Parrot_load_lib(interp, slib, NULL); */
-            STRING *slib = CONST_STRING(interp, "gdbm3");
+        /* RT #46393: What if libgdbm.so cannot be loaded */
+        /* Parrot_load_lib(interp, slib, NULL); */
+        STRING *slib = CONST_STRING(interp, "gdbm3");
 #endif
-        }
     }
 
     VTABLE void init() {


More information about the parrot-commits mailing list