From 588ced59187e900310bf30aae8c93abbbb447732 Mon Sep 17 00:00:00 2001 From: VAN BOSSUYT Nicolas Date: Fri, 8 Nov 2024 11:15:28 +0100 Subject: [PATCH] vaev-base: Fixup the ""_px operator. --- src/vaev-base/length.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vaev-base/length.h b/src/vaev-base/length.h index 34b1aed..d0f3ab1 100644 --- a/src/vaev-base/length.h +++ b/src/vaev-base/length.h @@ -15,7 +15,7 @@ using PhysicalPixel = Distinct; /// Represents a logical pixel in the CSS coordinate system. using Px = Math::i24f8; -constexpr Px operator""_px(u64 val) { +constexpr Px operator""_px(unsigned long long val) { return Px(val); }