This library contains code that extends and simplifies different operations
for C language based programs.
Revision | 5742b731f57e948d78764b41a5e472e92a7ddcb6 (tree) |
---|---|
Zeit | 2022-10-04 09:42:23 |
Autor | Sergey Gusarov <laborer2008@gmai...> |
Commiter | Sergey Gusarov |
Fixed bcc warning
@@ -51,7 +51,7 @@ | ||
51 | 51 | #if defined (CT_COMPL_GCC_EMULATION) |
52 | 52 | count = __builtin_popcount(x); |
53 | 53 | #else |
54 | - int i; | |
54 | + uint i; | |
55 | 55 | |
56 | 56 | count = 0; |
57 | 57 | for (i = 0; i < sizeof(x) * CHAR_BIT; i++) |