summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-09-25 06:14:10 +0200
committerLioncash <mathew1800@gmail.com>2020-09-25 06:14:10 +0200
commit4ed4bba3050584cfe3e31a4bcc694c818c5baf2d (patch)
tree48065c69db6eeb7b48909e876d3529a232cd55ff /src/video_core/renderer_vulkan
parentvk_command_pool: Add missing header guard (diff)
downloadyuzu-4ed4bba3050584cfe3e31a4bcc694c818c5baf2d.tar
yuzu-4ed4bba3050584cfe3e31a4bcc694c818c5baf2d.tar.gz
yuzu-4ed4bba3050584cfe3e31a4bcc694c818c5baf2d.tar.bz2
yuzu-4ed4bba3050584cfe3e31a4bcc694c818c5baf2d.tar.lz
yuzu-4ed4bba3050584cfe3e31a4bcc694c818c5baf2d.tar.xz
yuzu-4ed4bba3050584cfe3e31a4bcc694c818c5baf2d.tar.zst
yuzu-4ed4bba3050584cfe3e31a4bcc694c818c5baf2d.zip
Diffstat (limited to 'src/video_core/renderer_vulkan')
-rw-r--r--src/video_core/renderer_vulkan/vk_command_pool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_vulkan/vk_command_pool.h b/src/video_core/renderer_vulkan/vk_command_pool.h
index fb98f72fc..92d8a9f4d 100644
--- a/src/video_core/renderer_vulkan/vk_command_pool.h
+++ b/src/video_core/renderer_vulkan/vk_command_pool.h
@@ -18,7 +18,7 @@ class VKDevice;
class CommandPool final : public ResourcePool {
public:
explicit CommandPool(MasterSemaphore& master_semaphore, const VKDevice& device);
- virtual ~CommandPool();
+ ~CommandPool() override;
void Allocate(size_t begin, size_t end) override;