From 38c5ad242c2748baff1937605e141187c857b533 Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Tue, 4 Feb 2025 14:50:03 +0100 Subject: [PATCH] framebuffer/virtio: resolve uint64_t ambiguity This ambiguity is caused by the inclusion of arm_neon.h by the blit library header. Issue #5428 --- repos/os/src/driver/framebuffer/virtio/component.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/repos/os/src/driver/framebuffer/virtio/component.h b/repos/os/src/driver/framebuffer/virtio/component.h index 99a2d3f4c04..ed0ee545818 100644 --- a/repos/os/src/driver/framebuffer/virtio/component.h +++ b/repos/os/src/driver/framebuffer/virtio/component.h @@ -33,6 +33,8 @@ class Virtio_fb::Driver { private: + using uint64_t = Genode::uint64_t; + /* * Noncopyable */