Ver código fonte

Dpkg::Shlibs::Symbol: Remove quotes around constant declaration

The constant name is a bareword, make it explicit.
Guillem Jover 13 anos atrás
pai
commit
39e0a3b9a6
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      scripts/Dpkg/Shlibs/Symbol.pm

+ 1 - 1
scripts/Dpkg/Shlibs/Symbol.pm

@@ -29,7 +29,7 @@ use Storable qw();
 use Dpkg::Shlibs::Cppfilt;
 
 # Supported alias types in the order of matching preference
-use constant 'ALIAS_TYPES' => qw(c++ symver);
+use constant ALIAS_TYPES => qw(c++ symver);
 
 sub new {
     my $this = shift;