X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2Fbigfloat.pl;h=9f94e8498fb2764f731a4914abfeb268610ce81f;hb=1443f10d16f26271d2df9b4bdda55dbe024319c3;hp=8c28abdcd1d2eb4e0090e3d6718e5676f59c14f6;hpb=f70c35af95b032bef7265d8d8029831a16708010;p=p5sagit%2Fp5-mst-13.2.git diff --git a/lib/bigfloat.pl b/lib/bigfloat.pl index 8c28abd..9f94e84 100644 --- a/lib/bigfloat.pl +++ b/lib/bigfloat.pl @@ -3,12 +3,18 @@ require "bigint.pl"; # # This library is no longer being maintained, and is included for backward # compatibility with Perl 4 programs which may require it. +# This legacy library is deprecated and will be removed in a future +# release of perl. # # In particular, this should not be used as an example of modern Perl # programming techniques. # # Suggested alternative: Math::BigFloat -# + +warn( "The 'bigfloat.pl' legacy library is deprecated and will be" + . " removed in the next major release of perl. Please use the" + . " Math::BigFloat module instead." ); + # Arbitrary length float math package # # by Mark Biggar