From e978b1134d50062334e5ea2c4123a16591ecac16 Mon Sep 17 00:00:00 2001 From: Rob Emery Date: Sun, 10 Apr 2016 19:19:36 +0100 Subject: [PATCH] Constants: Adding use strict and use warnings to work around Github https://github.com/github/linguist/issues/2149 --- lib/DDG/Goodie/Constants.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/DDG/Goodie/Constants.pm b/lib/DDG/Goodie/Constants.pm index 9eae296dc..8af545291 100644 --- a/lib/DDG/Goodie/Constants.pm +++ b/lib/DDG/Goodie/Constants.pm @@ -1,5 +1,8 @@ package DDG::Goodie::Constants; # ABSTRACT: Various Math and Physics constants. + +use strict; +use warnings; use DDG::Goodie; use YAML::XS qw( LoadFile );