Skip to content

Commit

Permalink
vaev-base: Fixup the ""_px operator.
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepy-monax committed Nov 8, 2024
1 parent 32a7de1 commit 588ced5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vaev-base/length.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ using PhysicalPixel = Distinct<i32, struct _PhysicalPixel>;
/// 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);
}

Expand Down

0 comments on commit 588ced5

Please sign in to comment.