diff options
author | Guillem Jover <guillem@debian.org> | 2015-05-20 14:45:34 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2015-05-30 02:57:57 +0200 |
commit | 8cb07a12ca16b099f368f78cd46ecec338e95367 (patch) | |
tree | 1f33594778fd0a4923ea8d289c684bd4a2bfba3b /scripts/Dpkg/Control/HashCore.pm | |
parent | 018dd2fd3bd73fe5218d6aef09e7bab54de652ca (diff) | |
download | dpkg-8cb07a12ca16b099f368f78cd46ecec338e95367.tar.gz |
scripts: Add missing strict and warnings pragmas for submodules
Diffstat (limited to 'scripts/Dpkg/Control/HashCore.pm')
-rw-r--r-- | scripts/Dpkg/Control/HashCore.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/Dpkg/Control/HashCore.pm b/scripts/Dpkg/Control/HashCore.pm index 9aa933625..1ff87ea5e 100644 --- a/scripts/Dpkg/Control/HashCore.pm +++ b/scripts/Dpkg/Control/HashCore.pm @@ -441,6 +441,9 @@ package Dpkg::Control::HashCore::Tie; # same order. But the order information is stored in a parent object of # type Dpkg::Control. +use strict; +use warnings; + use Dpkg::Checksums; use Dpkg::Control::FieldsCore; |