fix build on arch

This commit is contained in:
Vladislav Mikhalin 2025-01-18 16:54:06 +03:00
parent 388548ba47
commit 269ce12614

View file

@ -566,7 +566,8 @@ void Instance::CollectToolingInfo() {
return;
}
for (const vk::PhysicalDeviceToolProperties& tool : tools) {
LOG_INFO(Render_Vulkan, "Attached debugging tool: {}", tool.name);
const std::string_view name = tool.name;
LOG_INFO(Render_Vulkan, "Attached debugging tool: {}", name);
}
}