Subject: | Storable doesn't compile in Debug mode (#define DEBUGME) |
If you set the debug switch in line 24 of Storable.xs to 1, it no longer
compiles (hundreds of lines with error messages).
Fix:
--- Storable.xs.gfl 2006-05-30 14:21:25.000000000 +0200
+++ Storable.xs 2006-05-30 18:34:41.000000000 +0200
@@ -3099,7 +3099,7 @@
#else
tag = *svh;
#endif
- ary[i] = tag
+ ary[i] = tag;
TRACEME(("listed object %d at 0x%"UVxf" is tag #%"UVuf,
i-1, PTR2UV(xsv), PTR2UV(tag)));
}