File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 11# Compile Time Regular Expressions v3
22
3- [ ![ Build Status] ( https://travis-ci.org /hanickadot/compile-time-regular-expressions. svg?branch=master )] ( https://travis-ci.org /hanickadot/compile-time-regular-expressions )
3+ [ ![ Build Status] ( https://github.com /hanickadot/compile-time-regular-expressions/actions/workflows/tests.yml/badge. svg )] ( https://github.com /hanickadot/compile-time-regular-expressions/actions/workflows/tests.yml )
44
55Fast compile-time regular expressions with support for matching/searching/capturing during compile-time or runtime.
66
@@ -268,7 +268,7 @@ int main() {
268268 using namespace std::literals;
269269 std::u8string_view original = u8"Tu es un génie"sv;
270270
271- for (auto match : ctre::search_all<"\\p{Letter}+">(original))
271+ for (auto match: ctre::search_all<"\\p{Letter}+">(original))
272272 std::cout << cast_from_unicode(match) << std::endl;
273273 return 0;
274274}
You can’t perform that action at this time.
0 commit comments