From aa49abdf239bae6065fddd0839ec67a404c9748c Mon Sep 17 00:00:00 2001 From: Joel Klinghed Date: Mon, 15 Sep 2025 21:15:53 +0200 Subject: Add .clang-format Make it easier to keep a consistent style --- src/str.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/str.cc') diff --git a/src/str.cc b/src/str.cc index f81617d..bd7a654 100644 --- a/src/str.cc +++ b/src/str.cc @@ -24,8 +24,8 @@ void split(std::string_view str, std::vector& out, } } -std::vector split(std::string_view str, - char separator, bool keep_empty) { +std::vector split(std::string_view str, char separator, + bool keep_empty) { std::vector vec; split(str, vec, separator, keep_empty); return vec; -- cgit v1.3