From 65ae9ee068f3f7e87b081bc464ae30248afa6b7a Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sun, 3 May 2020 21:07:24 -0700 Subject: [PATCH] [clang-tidy] use uppercase literals Found with readability-uppercase-literal-suffix Signed-off-by: Rosen Penev --- src/pugixml.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pugixml.cpp b/src/pugixml.cpp index 2b365d9..8625fcd 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -7582,9 +7582,9 @@ PUGI__NS_BEGIN // MurmurHash3 32-bit finalizer h ^= h >> 16; - h *= 0x85ebca6bu; + h *= 0x85ebca6bU; h ^= h >> 13; - h *= 0xc2b2ae35u; + h *= 0xc2b2ae35U; h ^= h >> 16; size_t hashmod = size - 1;