diff options
Diffstat (limited to 'meta-oe/recipes-core/dbus-cxx/files/0001-include-utility-header.patch')
-rw-r--r-- | meta-oe/recipes-core/dbus-cxx/files/0001-include-utility-header.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/meta-oe/recipes-core/dbus-cxx/files/0001-include-utility-header.patch b/meta-oe/recipes-core/dbus-cxx/files/0001-include-utility-header.patch deleted file mode 100644 index 0c8262af75..0000000000 --- a/meta-oe/recipes-core/dbus-cxx/files/0001-include-utility-header.patch +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | From 63170cfcfbf483716ce2599e165db80713fc2706 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Tue, 12 Apr 2022 06:47:19 -0700 | ||
4 | Subject: [PATCH] include utility header | ||
5 | |||
6 | Needed for exchange from std namespace | ||
7 | |||
8 | Fixes | ||
9 | dbus-cxx/variant.cpp:135:25: error: 'exchange' is not a member of 'std' | ||
10 | |||
11 | Upstream-Status: Submitted [https://github.com/dbus-cxx/dbus-cxx/pull/98] | ||
12 | |||
13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
14 | --- | ||
15 | dbus-cxx/variant.cpp | 1 + | ||
16 | 1 file changed, 1 insertion(+) | ||
17 | |||
18 | diff --git a/dbus-cxx/variant.cpp b/dbus-cxx/variant.cpp | ||
19 | index 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 | -- | ||
31 | 2.35.1 | ||
32 | |||