Skip to content

Commit 5f3deea

Browse files
committed
embed.pl: Move declaration closer to first use
1 parent fd04c85 commit 5f3deea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

regen/embed.pl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,6 @@ sub generate_proto_h {
156156
}
157157

158158
my @nonnull;
159-
my $args_assert_line = ( $flags !~ /m/ );
160159
my $has_depth = ( $flags =~ /W/ );
161160
my $has_context = ( $flags !~ /T/ );
162161
my $never_returns = ( $flags =~ /r/ );
@@ -198,6 +197,8 @@ sub generate_proto_h {
198197
if $flags =~ /u/;
199198
}
200199

200+
my $args_assert_line = ( $flags !~ /m/ );
201+
201202
my ($static_flag, @extra_static_flags)= $flags =~/([SsIi])/g;
202203

203204
if (@extra_static_flags) {

0 commit comments

Comments
 (0)