Convert constants to const, or remove if unused.

This commit is contained in:
2023-10-05 02:35:03 +01:00
parent 04120aa5f4
commit 6cf148e849
2 changed files with 4 additions and 4 deletions

View File

@@ -65,7 +65,7 @@ static class Neon
/*
* Process the data in blocks.
*/
uint block_Size = 1 << 5;
const uint block_Size = 1 << 5;
uint blocks = len / block_Size;
len -= blocks * block_Size;

View File

@@ -62,7 +62,7 @@ static class Ssse3
/*
* Process the data in blocks.
*/
uint block_Size = 1 << 5;
const uint block_Size = 1 << 5;
uint blocks = len / block_Size;
len -= blocks * block_Size;