You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm attempting to remove anything in ::testing (gtest) from my profile when using templight-convert, but nothing that I try results in filtering out the entries. I have tried both examples for std namspace: 1. "context std" and 2. "context ^std(::|$)". Neither work.
I am invoking with --blacklist=profile.blacklist, where profile.blacklist is a file in the current directory with the contents specified above as #1 and #2.
What must be done?
The text was updated successfully, but these errors were encountered:
I'd be surprised if the blacklist ever worked. regex_match matches whole string, but it's clear from usage that the author means to match substrings. Here's a patch that makes this somewhat usable.
I'm attempting to remove anything in ::testing (gtest) from my profile when using templight-convert, but nothing that I try results in filtering out the entries. I have tried both examples for std namspace: 1. "context std" and 2. "context ^std(::|$)". Neither work.
I am invoking with --blacklist=profile.blacklist, where profile.blacklist is a file in the current directory with the contents specified above as #1 and #2.
What must be done?
The text was updated successfully, but these errors were encountered: