From 7d91977f42f343f024172dc7376a3b31e81a255e Mon Sep 17 00:00:00 2001 From: Third Party Date: Thu, 10 Aug 2023 17:21:43 +0000 Subject: [PATCH] Run clang-format --- include/llama/StructName.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/llama/StructName.hpp b/include/llama/StructName.hpp index d42fc50863..465029c12b 100644 --- a/include/llama/StructName.hpp +++ b/include/llama/StructName.hpp @@ -284,9 +284,10 @@ namespace llama constexpr auto intToStrSize(std::size_t s) { std::size_t len = 1; - while (s >= 10) { + while(s >= 10) + { len++; - s /=10; + s /= 10; } return len; }