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,8 +65,8 @@ static class Neon
/*
* Process the data in blocks.
*/
uint block_Size = 1 << 5;
uint blocks = len / block_Size;
const uint block_Size = 1 << 5;
uint blocks = len / block_Size;
len -= blocks * block_Size;
while(blocks != 0)

View File

@@ -62,8 +62,8 @@ static class Ssse3
/*
* Process the data in blocks.
*/
uint block_Size = 1 << 5;
uint blocks = len / block_Size;
const uint block_Size = 1 << 5;
uint blocks = len / block_Size;
len -= blocks * block_Size;
while(blocks != 0)