Skip to content

Commit 7006474

Browse files
fix(doxygen): fix -Wcomma warning, improve formatting
1 parent d5eaec2 commit 7006474

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/doxygen.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11443,7 +11443,11 @@ static int computeIdealCacheParam(size_t v)
1144311443
//printf("computeIdealCacheParam(v=%u)\n",v);
1144411444

1144511445
int r=0;
11446-
while (v!=0) v>>=1,r++;
11446+
while (v!=0)
11447+
{
11448+
v >>= 1;
11449+
r++;
11450+
}
1144711451
// r = log2(v)
1144811452

1144911453
// convert to a valid cache size value

0 commit comments

Comments
 (0)