summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2020-09-25 00:14:10 -0400
committerGravatar Lioncash2020-09-25 00:14:10 -0400
commit4ed4bba3050584cfe3e31a4bcc694c818c5baf2d (patch)
tree48065c69db6eeb7b48909e876d3529a232cd55ff /src
parentvk_command_pool: Add missing header guard (diff)
downloadyuzu-4ed4bba3050584cfe3e31a4bcc694c818c5baf2d.tar.gz
yuzu-4ed4bba3050584cfe3e31a4bcc694c818c5baf2d.tar.xz
yuzu-4ed4bba3050584cfe3e31a4bcc694c818c5baf2d.zip
vk_command_pool: Make use of override on destructor
Diffstat (limited to 'src')
-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;
18class CommandPool final : public ResourcePool { 18class CommandPool final : public ResourcePool {
19public: 19public:
20 explicit CommandPool(MasterSemaphore& master_semaphore, const VKDevice& device); 20 explicit CommandPool(MasterSemaphore& master_semaphore, const VKDevice& device);
21 virtual ~CommandPool(); 21 ~CommandPool() override;
22 22
23 void Allocate(size_t begin, size_t end) override; 23 void Allocate(size_t begin, size_t end) override;
24 24