From 440af9db846caef60e553bad1f1b41af42b99f86 Mon Sep 17 00:00:00 2001 From: Alexandru Croitor Date: Tue, 25 Jul 2023 10:47:22 +0200 Subject: [PATCH] [qt] Fix missing std::move when building on macOS with Xcode 14.3 Apparently the utility header was implicitly included in unique_any.hpp but that doesn't happen anymore with the SDK shipped with Xcode 14.3, and leads to compilation failures. Explicitly include the utility header to make std::move available. --- include/mbgl/util/unique_any.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/mbgl/util/unique_any.hpp b/include/mbgl/util/unique_any.hpp index c7dc8b38eaf..0fb25b8b4a8 100644 --- a/include/mbgl/util/unique_any.hpp +++ b/include/mbgl/util/unique_any.hpp @@ -3,6 +3,7 @@ #include #include #include +#include namespace mbgl { namespace util {