From 81e5e52cf37fbadccba8148ee2775cc04e870af9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hana=20Dusi=CC=81kova=CC=81?= Date: Sun, 5 Jan 2025 13:49:39 +0100 Subject: [PATCH] updated readme with github status icon --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8cd3c207..09e45284 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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; }