From 787d3a3ba4c24c9e26b44b0c8ff1a935aa6d6b53 Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Mon, 9 Oct 2023 11:11:03 +0300 Subject: [PATCH] wayland: Fix SurfaceState forward declaration It's a struct and clang is not happy about using class. --- src/wayland/transaction.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wayland/transaction.h b/src/wayland/transaction.h index 00d76f630a..c03bb91986 100644 --- a/src/wayland/transaction.h +++ b/src/wayland/transaction.h @@ -18,7 +18,7 @@ namespace KWin { class SurfaceInterface; -class SurfaceState; +struct SurfaceState; class Transaction; /**