From: Eric Wong Date: Wed, 9 Sep 2020 06:26:09 +0000 (+0000) Subject: solver: drop warnings, modernize use v5.10.1, use SEEK_SET X-Git-Tag: v1.6.0~27 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=38226be5fd4c24885658e00d4ce87ccee663063d;hp=38226be5fd4c24885658e00d4ce87ccee663063d;p=public-inbox.git solver: drop warnings, modernize use v5.10.1, use SEEK_SET With Perl upstream preparing to deprecate things, we'll move towards only enabling warnings during development via shebang and stop enabling them via "use". We'll also favor "use v5.10.1" over the Perl 5.6-compatible "use 5.010_001", since our code base never worked on 5.6. Finally, were also importing SEEK_SET without using it, just use it for readability since we can't avoid loading Fcntl in other places and it'll get constant-folded, anyways. ---