From: Breno G. de Oliveira Date: Sun, 11 Oct 2009 23:21:25 +0000 (-0300) Subject: Constant.pm uses base instead of @ISA directly X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5aa20fd927a96407d73afec3a61548058377b9fc;p=sdlgit%2FSDL_perl.git Constant.pm uses base instead of @ISA directly --- diff --git a/lib/SDL/Constants.pm b/lib/SDL/Constants.pm index f77bde9..12f31b6 100644 --- a/lib/SDL/Constants.pm +++ b/lib/SDL/Constants.pm @@ -31,7 +31,7 @@ package SDL::Constants; use strict; use warnings; - +use base 'Exporter'; our @EXPORT=qw( AUDIO_S16 @@ -308,8 +308,6 @@ our @EXPORT=qw( SDL_SAMPLEFLAG_EAGAIN ); -@ISA = qw(Exporter); - sub AUDIO_S16 {32784} sub AUDIO_S16MSB {36880} sub AUDIO_S8 {32776}