summaryrefslogtreecommitdiff
path: root/stream-servers/tests
diff options
context:
space:
mode:
Diffstat (limited to 'stream-servers/tests')
-rw-r--r--stream-servers/tests/DisplayVk_unittest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream-servers/tests/DisplayVk_unittest.cpp b/stream-servers/tests/DisplayVk_unittest.cpp
index 1f01bc9c..41b95979 100644
--- a/stream-servers/tests/DisplayVk_unittest.cpp
+++ b/stream-servers/tests/DisplayVk_unittest.cpp
@@ -178,7 +178,7 @@ class DisplayVkTest : public ::testing::Test {
void createLogicalDevice() {
const float queuePriority = 1.0f;
std::vector<VkDeviceQueueCreateInfo> queueCis(0);
- for (auto queueFamilyIndex : std::unordered_set(
+ for (auto queueFamilyIndex : std::unordered_set<uint32_t>(
{m_swapChainQueueFamilyIndex, m_compositorQueueFamilyIndex})) {
VkDeviceQueueCreateInfo queueCi = {
.sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO,