1From 63170cfcfbf483716ce2599e165db80713fc2706 Mon Sep 17 00:00:00 2001 2From: Khem Raj <raj.khem@gmail.com> 3Date: Tue, 12 Apr 2022 06:47:19 -0700 4Subject: [PATCH] include utility header 5 6Needed for exchange from std namespace 7 8Fixes 9dbus-cxx/variant.cpp:135:25: error: 'exchange' is not a member of 'std' 10 11Upstream-Status: Submitted [https://github.com/dbus-cxx/dbus-cxx/pull/98] 12 13Signed-off-by: Khem Raj <raj.khem@gmail.com> 14--- 15 dbus-cxx/variant.cpp | 1 + 16 1 file changed, 1 insertion(+) 17 18diff --git a/dbus-cxx/variant.cpp b/dbus-cxx/variant.cpp 19index bcf2684..97b622c 100644 20--- a/dbus-cxx/variant.cpp 21+++ b/dbus-cxx/variant.cpp 22@@ -11,6 +11,7 @@ 23 #include <dbus-cxx/dbus-cxx-private.h> 24 #include <dbus-cxx/signatureiterator.h> 25 #include <stdint.h> 26+#include <utility> 27 #include "enums.h" 28 #include "path.h" 29 #include "signature.h" 30-- 312.35.1 32 33