mirror of
https://gitlab.freedesktop.org/mesa/vulkan-wsi-layer.git
synced 2025-12-20 02:10:13 +01:00
constness adjustment for clang20
Signed-off-by: Iason Paraskevopoulos <iason.paraskevopoulos@arm.com> Change-Id: Ib6fbcf6512a39fac7306ddcefb00846b336a92b3
This commit is contained in:
parent
04d2ba65d5
commit
f596f8289f
1 changed files with 3 additions and 3 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue