constness adjustment for clang20

Signed-off-by: Iason Paraskevopoulos <iason.paraskevopoulos@arm.com>
Change-Id: Ib6fbcf6512a39fac7306ddcefb00846b336a92b3
This commit is contained in:
Iason Paraskevopoulos 2025-12-15 12:02:24 +00:00
parent 04d2ba65d5
commit f596f8289f

View file

@ -54,8 +54,8 @@ class swapchain_wsialloc_allocator
public: public:
static std::optional<swapchain_wsialloc_allocator> create(); static std::optional<swapchain_wsialloc_allocator> create();
swapchain_wsialloc_allocator(swapchain_wsialloc_allocator &other) = delete; swapchain_wsialloc_allocator(const swapchain_wsialloc_allocator &other) = delete;
swapchain_wsialloc_allocator &operator=(swapchain_wsialloc_allocator &other) = delete; swapchain_wsialloc_allocator &operator=(const swapchain_wsialloc_allocator &other) = delete;
swapchain_wsialloc_allocator(swapchain_wsialloc_allocator &&other) swapchain_wsialloc_allocator(swapchain_wsialloc_allocator &&other)
: m_allocator(other.m_allocator) : m_allocator(other.m_allocator)
@ -106,4 +106,4 @@ private:
} }
}; };
} /* namespace wsi */ } /* namespace wsi */