We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1da6909 commit b1809a2Copy full SHA for b1809a2
src/smallsha1.cpp
@@ -39,8 +39,8 @@ namespace sha1
39
namespace // local
40
{
41
// Rotate an integer value to left.
42
- inline const unsigned int rol(unsigned int value,
43
- unsigned int steps)
+ inline unsigned int rol(const unsigned int value,
+ const unsigned int steps)
44
45
return ((value << steps) | (value >> (32 - steps)));
46
}
0 commit comments