diff options
author | Lioncash <mathew1800@gmail.com> | 2020-09-25 06:14:10 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-09-25 06:14:10 +0200 |
commit | 4ed4bba3050584cfe3e31a4bcc694c818c5baf2d (patch) | |
tree | 48065c69db6eeb7b48909e876d3529a232cd55ff /src | |
parent | vk_command_pool: Add missing header guard (diff) | |
download | yuzu-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 '')
-rw-r--r-- | src/video_core/renderer_vulkan/vk_command_pool.h | 2 |
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; |