Merge 'constness adjustment for clang20' into 'main'

See merge request mesa/vulkan-wsi-layer!223
This commit is contained in:
Iason Paraskevopoulos 2025-12-16 14:27:05 +00:00
commit e7bc75be63

View file

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