mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 04:47:53 +00:00
vk_command_pool: Make use of override on destructor
This commit is contained in:
parent
e0f2db4376
commit
4ed4bba305
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue