diff --git a/src/util/byte_units.h b/src/util/byte_units.h index 894f057a7e4..3d6a9627d88 100644 --- a/src/util/byte_units.h +++ b/src/util/byte_units.h @@ -10,7 +10,7 @@ #include //! Overflow-safe conversion of MiB to bytes. -constexpr size_t operator"" _MiB(unsigned long long mebibytes) +constexpr size_t operator""_MiB(unsigned long long mebibytes) { auto bytes{CheckedLeftShift(mebibytes, 20)}; if (!bytes || *bytes > std::numeric_limits::max()) {