From c82cce6d95876c49116826becc116b8e20162a14 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Wed, 9 Mar 2022 23:58:54 +0100 Subject: [PATCH] Explicitly specify queue template param GCC 7 fails to deduce the contained type --- src/gfx/pal_packing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gfx/pal_packing.cpp b/src/gfx/pal_packing.cpp index bff907d7..30d040f0 100644 --- a/src/gfx/pal_packing.cpp +++ b/src/gfx/pal_packing.cpp @@ -370,7 +370,7 @@ std::tuple, size_t> }; // Begin with all proto-palettes queued up for insertion - std::queue queue(std::deque(Iota{0}, Iota{protoPalettes.size()})); + std::queue queue(std::deque(Iota{0}, Iota{protoPalettes.size()})); // Begin with no pages std::vector assignments{};