mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-09 06:37:56 +00:00
* add 'Upstream-Status: Pending' where it was missing and fix malformatted one in 1296.patch * fixes: ERROR: lib32-mongodb-4.4.24-r0 do_patch: QA Issue: Malformed Upstream-Status in patch meta-oe/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb/1296.patch Please correct according to https://docs.yoctoproject.org/contributor-guide/recipe-style-guide.html#patch-upstream-status : Upstream-Status: submitted https://github.com/mongodb/mongo/pull/1296 [patch-status] ERROR: lib32-mongodb-4.4.24-r0 do_patch: QA Issue: Missing Upstream-Status in patch meta-oe/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb/0001-free_mon-Include-missing-cstdint.patch Please add according to https://docs.yoctoproject.org/contributor-guide/recipe-style-guide.html#patch-upstream-status . [patch-status] ... Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
From 097e8a66930cfa28ac8bfa35f62d0a9ee3b74488 Mon Sep 17 00:00:00 2001
|
|
From: Vincent Prince <vincent.prince.fr@gmail.com>
|
|
Date: Mon, 16 Sep 2019 13:46:52 +0200
|
|
Subject: [PATCH 10/10] asio: Dont use experimental with clang
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
Signed-off-by: Vincent Prince <vincent.prince.fr@gmail.com>
|
|
|
|
Upstream-Status: Pending
|
|
---
|
|
src/third_party/asio-master/asio/include/asio/detail/string_view.hpp | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/third_party/asio-master/asio/include/asio/detail/string_view.hpp b/src/third_party/asio-master/asio/include/asio/detail/string_view.hpp
|
|
index f09cebc..fa307b5 100644
|
|
--- a/src/third_party/asio-master/asio/include/asio/detail/string_view.hpp
|
|
+++ b/src/third_party/asio-master/asio/include/asio/detail/string_view.hpp
|
|
@@ -33,8 +33,8 @@ namespace asio {
|
|
using std::basic_string_view;
|
|
using std::string_view;
|
|
#elif defined(ASIO_HAS_STD_EXPERIMENTAL_STRING_VIEW)
|
|
-using std::experimental::basic_string_view;
|
|
-using std::experimental::string_view;
|
|
+using std::basic_string_view;
|
|
+using std::string_view;
|
|
#endif // defined(ASIO_HAS_STD_EXPERIMENTAL_STRING_VIEW)
|
|
|
|
} // namespace asio
|
|
--
|
|
2.7.4
|
|
|