Fix minor warning from clang-20.

This commit is contained in:
Stephen Anthony 2025-04-19 12:59:04 -02:30
parent b753f6eefa
commit 709237c79c
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ using ByteBuffer = std::unique_ptr<uInt8[]>;
using DWordBuffer = std::unique_ptr<uInt32[]>;
// We use KB a lot; let's make a literal for it
constexpr size_t operator "" _KB(unsigned long long size)
constexpr size_t operator ""_KB(unsigned long long size)
{
return static_cast<size_t>(size * 1024);
}