[clang] [llvm] [SpecialCaseList] Use glob by default (PR #74809)

Ellis Hoag via cfe-commits cfe-commits at lists.llvm.org
Fri Jan 5 16:07:51 PST 2024


ellishg wrote:

> This caused some ignorelist changes, e.g.
> 
> 
> 
> `src:*third_party/vulkan_memory_allocator/include/vk_mem_alloc.h`
> 
> 
> 
> didn't work anymore and the opt-out made it work again. Still investigating why.

Not sure if it's the reason, but the `.` in `vk_mem_alloc.h` matches any character for regex, but only the literal for glob (use `?` for this). I think everything else is the same. 

https://github.com/llvm/llvm-project/pull/74809


More information about the cfe-commits mailing list