cleanup require usage so we don't trample on $@ and tweak the DEMOLISH code slightly
[gitmo/Role-Tiny.git] / lib / Moo / _mro.pm
1 package Moo::_mro;
2
3 local $@;
4
5 if ($] >= 5.010) {
6   require mro;
7 } else {
8   require MRO::Compat;
9 }
10
11 1;