mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-09 17:59:26 +00:00
catch2: Replace the patch with upstreamable patch
Update to tip of master Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -1,36 +1,37 @@
|
|||||||
From b2bd82a0c0d3d5dda588d12cc1672a03a9630784 Mon Sep 17 00:00:00 2001
|
From 7d7428fd09d1bcee281f7b678df8fb71e9365b17 Mon Sep 17 00:00:00 2001
|
||||||
From: Khem Raj <raj.khem@gmail.com>
|
From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?=
|
||||||
Date: Mon, 17 Dec 2018 17:27:43 -0800
|
<martin.horenovsky@gmail.com>
|
||||||
Subject: [PATCH] Remove redundant move
|
Date: Thu, 27 Dec 2018 16:08:04 +0100
|
||||||
|
Subject: [PATCH] A different approach
|
||||||
|
|
||||||
fixes errors like below
|
|
||||||
|
|
||||||
/mnt/a/yoe/build/tmp/work/aarch64-yoe-linux-musl/catch2/2.5.0-r0/git/include/internal/catch_session.cpp:52:29:
|
|
||||||
error: redundant move in return statement [-Werror=redundant-move]
|
|
||||||
52 | return std::move(multi);
|
|
||||||
| ~~~~~~~~~^~~~~~~
|
|
||||||
/mnt/a/yoe/build/tmp/work/aarch64-yoe-linux-musl/catch2/2.5.0-r0/git/include/internal/catch_session.cpp:52:29:
|
|
||||||
note: remove 'std::move' call
|
|
||||||
|
|
||||||
Upstream-Status: Submitted [https://github.com/catchorg/Catch2/pull/1474]
|
|
||||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
||||||
---
|
---
|
||||||
include/internal/catch_session.cpp | 2 +-
|
include/internal/catch_session.cpp | 15 ++++++++++-----
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
1 file changed, 10 insertions(+), 5 deletions(-)
|
||||||
|
|
||||||
diff --git a/include/internal/catch_session.cpp b/include/internal/catch_session.cpp
|
|
||||||
index 0920521c..b66d57ac 100644
|
|
||||||
--- a/include/internal/catch_session.cpp
|
--- a/include/internal/catch_session.cpp
|
||||||
+++ b/include/internal/catch_session.cpp
|
+++ b/include/internal/catch_session.cpp
|
||||||
@@ -49,7 +49,7 @@ namespace Catch {
|
@@ -42,14 +42,20 @@ namespace Catch {
|
||||||
multi->addListener(listener->create(Catch::ReporterConfig(config)));
|
return createReporter(config->getReporterName(), config);
|
||||||
}
|
}
|
||||||
multi->addReporter(createReporter(config->getReporterName(), config));
|
|
||||||
|
- auto multi = std::unique_ptr<ListeningReporter>(new ListeningReporter);
|
||||||
|
+ // On older platforms, returning std::unique_ptr<ListeningReporter>
|
||||||
|
+ // when the return type is std::unique_ptr<IStreamingReporter>
|
||||||
|
+ // doesn't compile without a std::move call. However, this causes
|
||||||
|
+ // a warning on newer platforms. Thus, we have to work around
|
||||||
|
+ // it a bit and downcast the pointer manually.
|
||||||
|
+ auto ret = std::unique_ptr<IStreamingReporter>(new ListeningReporter);
|
||||||
|
+ auto& multi = static_cast<ListeningReporter&>(*ret);
|
||||||
|
|
||||||
|
auto const& listeners = Catch::getRegistryHub().getReporterRegistry().getListeners();
|
||||||
|
for (auto const& listener : listeners) {
|
||||||
|
- multi->addListener(listener->create(Catch::ReporterConfig(config)));
|
||||||
|
+ multi.addListener(listener->create(Catch::ReporterConfig(config)));
|
||||||
|
}
|
||||||
|
- multi->addReporter(createReporter(config->getReporterName(), config));
|
||||||
- return std::move(multi);
|
- return std::move(multi);
|
||||||
+ return multi;
|
+ multi.addReporter(createReporter(config->getReporterName(), config));
|
||||||
|
+ return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
--
|
|
||||||
2.20.1
|
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,8 @@ SRC_URI = "git://github.com/catchorg/Catch2.git \
|
|||||||
file://0001-Remove-redundant-move.patch \
|
file://0001-Remove-redundant-move.patch \
|
||||||
"
|
"
|
||||||
# v2.5.0
|
# v2.5.0
|
||||||
SRCREV = "6ccd467094973824d89efb16cbc553e279f79823"
|
#SRCREV = "6ccd467094973824d89efb16cbc553e279f79823"
|
||||||
|
SRCREV = "461843b1f02a4bf5c59db88ff201d2c56fabf3a4"
|
||||||
|
|
||||||
S = "${WORKDIR}/git"
|
S = "${WORKDIR}/git"
|
||||||
|
|
||||||
@@ -23,4 +24,3 @@ do_install_append() {
|
|||||||
# Header-only library
|
# Header-only library
|
||||||
RDEPENDS_${PN}-dev = ""
|
RDEPENDS_${PN}-dev = ""
|
||||||
RRECOMMENDS_${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})"
|
RRECOMMENDS_${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user