vulkan/wrapper: Avoid unnecessary copy in EnumerateInstanceExtensionProperties()

Given this is implicitly creating a std::optional, we can move the
vector into it.
This commit is contained in:
Lioncash 2020-08-14 08:23:47 -04:00
parent e050594706
commit 167d36ec3c

View file

@ -786,7 +786,7 @@ std::optional<std::vector<VkExtensionProperties>> EnumerateInstanceExtensionProp
VK_SUCCESS) {
return std::nullopt;
}
return properties;
return std::move(properties);
}
std::optional<std::vector<VkLayerProperties>> EnumerateInstanceLayerProperties(