Skip to content

Commit

Permalink
Run clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
Third Party committed Aug 10, 2023
1 parent 7e17b8e commit 7d91977
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions include/llama/StructName.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 7d91977

Please sign in to comment.