mirror of
https://gitlab.freedesktop.org/mesa/vulkan-wsi-layer.git
synced 2026-05-21 14:38:15 +02:00
Merge 'constness adjustment for clang20' into 'main'
See merge request mesa/vulkan-wsi-layer!223
This commit is contained in:
commit
e7bc75be63
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