From 5cdf3f2d460165e16935d03d1e1a1483294f43c6 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Tue, 19 Sep 2023 09:57:24 -0400 Subject: [PATCH] clang-format --- src/to_ascii.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/to_ascii.cpp b/src/to_ascii.cpp index b49b613..6dd9eff 100644 --- a/src/to_ascii.cpp +++ b/src/to_ascii.cpp @@ -11,8 +11,7 @@ namespace ada::idna { -bool begins_with(std::u32string_view view, - std::u32string_view prefix) { +bool begins_with(std::u32string_view view, std::u32string_view prefix) { if (view.size() < prefix.size()) { return false; }