mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
note when a constant tag is ignored
This commit is contained in:
parent
50eaffaff6
commit
18fe076b34
1 changed files with 5 additions and 2 deletions
|
@ -170,7 +170,7 @@ sub extract_constants {
|
|||
$tag =~ s/[ \-]+/_/g;
|
||||
($tag) = $tag =~ /^(\w+)/;
|
||||
$tag =~ s/_$//;
|
||||
$tag = '' if $tag =~ /
|
||||
if ($tag =~ /
|
||||
testing_interface |
|
||||
library_version_numbers |
|
||||
configuration_options | device_characteristics |
|
||||
|
@ -181,7 +181,10 @@ sub extract_constants {
|
|||
virtual_table_indexing_information |
|
||||
checkpoint_operation_parameters | checkpoint_mode |
|
||||
conflict_resolution | text_encodings
|
||||
/x;
|
||||
/x) {
|
||||
print "$tag is ignored\n";
|
||||
$tag = '';
|
||||
}
|
||||
next;
|
||||
}
|
||||
if ($tag && /^#define SQLITE_(\S+)\s+(?:\d|\(SQLITE)/) {
|
||||
|
|
Loading…
Add table
Reference in a new issue