Hi

As a workaround, I suggest removing the OVERLOAD stuff from your XS code
and putting something like this in your .pm file:

package Ogre::Animation;

use overload
        '==' => sub { \&Ogre::Animation::cmp },
        fallback => 1;


I think you mean...

use overload
        '==' => \&Ogre::Animation::cmp,
        fallback => 1;


- Salva

Reply via email to