Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug fix in output_ignorelist #403

Merged
merged 2 commits into from
Dec 14, 2022
Merged

Conversation

pazner
Copy link
Contributor

@pazner pazner commented Dec 8, 2022

With the current behavior, a node is skipped if its id contains the regex listed in output_ignorelist. For example, in this header file:

typedef int ThisIsALongNameWithXSomewhereInIt;
typedef int X;

if output_ignorelist contains "X", then neither symbol will be output.

Instead, it should be checked that the entire id matches the regex (and if the other behavior is desired, this can be accomplished with explicit wildcards, ".*X.*").

A node should be ignored if its entire id matches the regular expression
in the ignorelist, not if the regular expression occurs anywhere in the
id.
@Gnimuc Gnimuc merged commit e40caee into JuliaInterop:master Dec 14, 2022
@Gnimuc
Copy link
Member

Gnimuc commented Dec 14, 2022

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants