about summary refs log tree commit homepage
path: root/lib/PublicInbox/Spawn.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2022-04-23 22:03:41 +0000
committerEric Wong <e@80x24.org>2022-04-26 10:37:53 +0000
commitd1fd2feb587b34d66227a6cb4f9c8b930812ddbf (patch)
tree564e91924182bb3052a73cc94df76201c34a2280 /lib/PublicInbox/Spawn.pm
parentbdfe25ade7180df0cb53c2bb61fa49e38c6bb349 (diff)
downloadpublic-inbox-d1fd2feb587b34d66227a6cb4f9c8b930812ddbf.tar.gz
Socket.pm still loads strict.pm, unfortunately, which hurts
startup time; but we'll save some LoC this way.
Diffstat (limited to 'lib/PublicInbox/Spawn.pm')
-rw-r--r--lib/PublicInbox/Spawn.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/Spawn.pm b/lib/PublicInbox/Spawn.pm
index 137b8087..3f69108a 100644
--- a/lib/PublicInbox/Spawn.pm
+++ b/lib/PublicInbox/Spawn.pm
@@ -15,7 +15,7 @@
 # We don't want too many DSOs: https://udrepper.livejournal.com/8790.html
 
 package PublicInbox::Spawn;
-use strict;
+use v5.12;
 use parent qw(Exporter);
 use Symbol qw(gensym);
 use Fcntl qw(LOCK_EX SEEK_SET);