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 1
1
# Compile Time Regular Expressions v3
2
2
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 )
4
4
5
5
Fast compile-time regular expressions with support for matching/searching/capturing during compile-time or runtime.
6
6
@@ -268,7 +268,7 @@ int main() {
268
268
using namespace std::literals;
269
269
std::u8string_view original = u8"Tu es un génie"sv;
270
270
271
- for (auto match : ctre::search_all<"\\p{Letter}+">(original))
271
+ for (auto match: ctre::search_all<"\\p{Letter}+">(original))
272
272
std::cout << cast_from_unicode(match) << std::endl;
273
273
return 0;
274
274
}
You can’t perform that action at this time.
0 commit comments