ECDH: Add #ifdef filter to tests/scripts/list-enum-consts.pl
This allows the use of #ifdef ... #endif in enum definitions (e.g., mbedtls_ecdh_variant in ecdh.h).
This commit is contained in:
parent
c9f737b4ba
commit
6817b9e819
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ while (<>)
|
|||
$state = 'in';
|
||||
} elsif( $state eq 'in' and /}/ ) {
|
||||
$state = 'out';
|
||||
} elsif( $state eq 'in' ) {
|
||||
} elsif( $state eq 'in' and not (/^#if/ or /#endif/)) {
|
||||
s/=.*//; s!/\*.*!!; s/,.*//; s/\s+//g; chomp;
|
||||
push @consts, $_ if $_;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue