wildcards icon indicating copy to clipboard operation
wildcards copied to clipboard

A simple C++ header-only template library implementing matching using wildcards

Results 6 wildcards issues
Sort by recently updated
recently updated
newest added

https://github.com/zemasoft/wildcards/blob/5662507f01f5d0a4ec22f45749214276ed366d1b/single_include/wildcards.hpp#L1199 the above line should be: ``` throw throw_logic_error( ```

``` #include "wildcards.hpp" #include #include int main() { using wildcards::make_matcher; constexpr auto pattern = make_matcher("???"); for (auto& entry : {"qwe", "asd", "zxc"}) { std::string str = entry;. if (pattern.matches(str)) std::cout

``` ===> Generating temporary packing list ninja: error: unknown target 'install/strip' ```

The __cpp_constexpr 201304L is available with more compilers, include GCC. https://en.cppreference.com/w/cpp/feature_test This patch fixes #28