Skip to content

Commit

Permalink
updated readme with github status icon
Browse files Browse the repository at this point in the history
  • Loading branch information
hanickadot committed Jan 5, 2025
1 parent accf3a8 commit 81e5e52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Compile Time Regular Expressions v3

[![Build Status](https://travis-ci.org/hanickadot/compile-time-regular-expressions.svg?branch=master)](https://travis-ci.org/hanickadot/compile-time-regular-expressions)
[![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)

Fast compile-time regular expressions with support for matching/searching/capturing during compile-time or runtime.

Expand Down Expand Up @@ -268,7 +268,7 @@ int main() {
using namespace std::literals;
std::u8string_view original = u8"Tu es un génie"sv;

for (auto match : ctre::search_all<"\\p{Letter}+">(original))
for (auto match: ctre::search_all<"\\p{Letter}+">(original))
std::cout << cast_from_unicode(match) << std::endl;
return 0;
}
Expand Down

0 comments on commit 81e5e52

Please sign in to comment.