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