In https://docs.vulkan.org/tutorial/latest/03_Drawing_a_triangle/00_Setup/04_Logical_device_and_queues.html#_retrieving_queue_handles users are instructed to add a new class member:
vk::raii::Queue graphicsQueue;
However this results in the sample code failing to compile because the default constructor of Queue is deleted. It should instead follow previous example steps and be:
vk::raii::Queue graphicsQueue = nullptr;
In https://docs.vulkan.org/tutorial/latest/03_Drawing_a_triangle/00_Setup/04_Logical_device_and_queues.html#_retrieving_queue_handles users are instructed to add a new class member:
vk::raii::Queue graphicsQueue;However this results in the sample code failing to compile because the default constructor of Queue is deleted. It should instead follow previous example steps and be:
vk::raii::Queue graphicsQueue = nullptr;