diff options
Diffstat (limited to 'meta-oe/recipes-test/catch2/files/0001-Fix-Wdefaulted-function-deleted-warning.patch')
| -rw-r--r-- | meta-oe/recipes-test/catch2/files/0001-Fix-Wdefaulted-function-deleted-warning.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta-oe/recipes-test/catch2/files/0001-Fix-Wdefaulted-function-deleted-warning.patch b/meta-oe/recipes-test/catch2/files/0001-Fix-Wdefaulted-function-deleted-warning.patch new file mode 100644 index 0000000000..555c71ad22 --- /dev/null +++ b/meta-oe/recipes-test/catch2/files/0001-Fix-Wdefaulted-function-deleted-warning.patch | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | From a39e0eaa8318335260967ffd1d16388eb5a1d6d8 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Tue, 12 Feb 2019 12:57:00 -0800 | ||
| 4 | Subject: [PATCH] Fix -Wdefaulted-function-deleted warning | ||
| 5 | |||
| 6 | Clang8 warns | ||
| 7 | |||
| 8 | catch_interfaces_reporter.h:84:25: error: explicitly defaulted move assignment operator is implicitly deleted [-Werror,-Wdefaulted-function-deleted] | ||
| 9 | | AssertionStats& operator = ( AssertionStats && ) = default; | ||
| 10 | | ^ | ||
| 11 | |||
| 12 | Upstream-Status: Submitted [https://github.com/catchorg/Catch2/pull/1537] | ||
| 13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 14 | --- | ||
| 15 | include/internal/catch_interfaces_reporter.h | 4 ++-- | ||
| 16 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
| 17 | |||
| 18 | diff --git a/include/internal/catch_interfaces_reporter.h b/include/internal/catch_interfaces_reporter.h | ||
| 19 | index 9d99c981..e5fbf8bb 100644 | ||
| 20 | --- a/include/internal/catch_interfaces_reporter.h | ||
| 21 | +++ b/include/internal/catch_interfaces_reporter.h | ||
| 22 | @@ -80,8 +80,8 @@ namespace Catch { | ||
| 23 | |||
| 24 | AssertionStats( AssertionStats const& ) = default; | ||
| 25 | AssertionStats( AssertionStats && ) = default; | ||
| 26 | - AssertionStats& operator = ( AssertionStats const& ) = default; | ||
| 27 | - AssertionStats& operator = ( AssertionStats && ) = default; | ||
| 28 | + AssertionStats& operator = ( AssertionStats const& ) = delete; | ||
| 29 | + AssertionStats& operator = ( AssertionStats && ) = delete; | ||
| 30 | virtual ~AssertionStats(); | ||
| 31 | |||
| 32 | AssertionResult assertionResult; | ||
| 33 | -- | ||
| 34 | 2.20.1 | ||
| 35 | |||
