actually, why not make the meta method renameable
[gitmo/Class-MOP.git] / lib / Class / MOP.pm
index 7393ac7..3059968 100644 (file)
@@ -668,13 +668,13 @@ Class::MOP::Instance->meta->add_attribute(
 ## Class::MOP::Object
 
 # need to replace the meta method there with a real meta method object
-Class::MOP::Object->meta->_add_meta_method;
+Class::MOP::Object->meta->_add_meta_method('meta');
 
 ## --------------------------------------------------------
 ## Class::MOP::Mixin
 
 # need to replace the meta method there with a real meta method object
-Class::MOP::Mixin->meta->_add_meta_method;
+Class::MOP::Mixin->meta->_add_meta_method('meta');
 
 require Class::MOP::Deprecated unless our $no_deprecated;