Skip to content

Commit

Permalink
makedef.pl: Remove redundant set
Browse files Browse the repository at this point in the history
This ||= is useless, as just above we've already set MULTIPLICITY if
USE_ITHREADS is set.
  • Loading branch information
khwilliamson committed May 6, 2023
1 parent 8cbafb8 commit 09e9739
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions makedef.pl
Expand Up @@ -123,9 +123,7 @@ BEGIN
}
}

$define{MULTIPLICITY} ||=
$define{USE_ITHREADS} ||
$define{PERL_IMPLICIT_CONTEXT} ;
$define{MULTIPLICITY} ||= $define{PERL_IMPLICIT_CONTEXT} ;

if ($define{USE_ITHREADS} && ! $define{WIN32}) {
$define{USE_REENTRANT_API} = 1;
Expand Down

0 comments on commit 09e9739

Please sign in to comment.