aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libsample/bytearray.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken6/tests/libsample/bytearray.cpp')
-rw-r--r--sources/shiboken6/tests/libsample/bytearray.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/shiboken6/tests/libsample/bytearray.cpp b/sources/shiboken6/tests/libsample/bytearray.cpp
index 1fe4b6fc2..78d5162b0 100644
--- a/sources/shiboken6/tests/libsample/bytearray.cpp
+++ b/sources/shiboken6/tests/libsample/bytearray.cpp
@@ -161,6 +161,6 @@ unsigned int ByteArray::hash(const ByteArray &byteArray)
{
unsigned int result = 0;
for (char c : byteArray.m_data)
- result = 5u * result + unsigned(c);
+ result = 5U * result + unsigned(c);
return result;
}