Author: allison
Date: Mon Feb 5 21:35:47 2007
New Revision: 16903
Modified:
trunk/src/pmc.c
Log:
Noting another common cause of a Null vtable error.
Modified: trunk/src/pmc.c
==============================================================================
--- trunk/src/pmc.c (original)
+++ trunk/src/pmc.c Mon Feb 5 21:35:47 2007
@@ -174,8 +174,10 @@
if (!vtable) {
/* This is usually because you either didn't call init_world early
- * enough or you added a new PMC class without adding
- * Parrot_(classname)_class_init to init_world. */
+ * enough, you added a new PMC class without adding
+ * Parrot_(classname)_class_init to init_world, or you forgot
+ * to run 'make realclean' after adding a new PMC class.
+ */
PANIC("Null vtable used");
}