From 03df91162f3a4050bbcd3dc98761786997f9c5c9 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Thu, 7 May 2009 16:05:53 -0700 Subject: [PATCH] Fix uninitialized value warning in t/SF.t caused by $Math::GSL::GSL_MODE_DEFAULT not being imported --- t/SF.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/SF.t b/t/SF.t index bff997b..233d974 100644 --- a/t/SF.t +++ b/t/SF.t @@ -2,6 +2,7 @@ package Math::GSL::SF::Test; use Math::GSL::Test qw/:all/; use base q{Test::Class}; use Test::More tests => 1109; +use Math::GSL qw/:all/; use Math::GSL::Const qw/:all/; use Math::GSL::Errno qw/:all/; use Math::GSL::SF qw/:all/; -- 2.11.4.GIT