From a39154e11541af4110cfbfdc1186b931196049c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Mon, 11 May 2020 00:00:48 +0200 Subject: [PATCH] Do not explicitly default smfs if all of them are defaulted --- .../interfaces/catch_interfaces_reporter.hpp | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/catch2/interfaces/catch_interfaces_reporter.hpp b/src/catch2/interfaces/catch_interfaces_reporter.hpp index d6c29810..408db425 100644 --- a/src/catch2/interfaces/catch_interfaces_reporter.hpp +++ b/src/catch2/interfaces/catch_interfaces_reporter.hpp @@ -99,10 +99,6 @@ namespace Catch { Counts const& _assertions, double _durationInSeconds, bool _missingAssertions ); - SectionStats( SectionStats const& ) = default; - SectionStats( SectionStats && ) = default; - SectionStats& operator = ( SectionStats const& ) = default; - SectionStats& operator = ( SectionStats && ) = default; SectionInfo sectionInfo; Counts assertions; @@ -117,11 +113,6 @@ namespace Catch { std::string const& _stdErr, bool _aborting ); - TestCaseStats( TestCaseStats const& ) = default; - TestCaseStats( TestCaseStats && ) = default; - TestCaseStats& operator = ( TestCaseStats const& ) = default; - TestCaseStats& operator = ( TestCaseStats && ) = default; - TestCaseInfo const * testInfo; Totals totals; std::string stdOut; @@ -135,11 +126,6 @@ namespace Catch { bool _aborting ); TestGroupStats( GroupInfo const& _groupInfo ); - TestGroupStats( TestGroupStats const& ) = default; - TestGroupStats( TestGroupStats && ) = default; - TestGroupStats& operator = ( TestGroupStats const& ) = default; - TestGroupStats& operator = ( TestGroupStats && ) = default; - GroupInfo groupInfo; Totals totals; bool aborting; @@ -150,11 +136,6 @@ namespace Catch { Totals const& _totals, bool _aborting ); - TestRunStats( TestRunStats const& ) = default; - TestRunStats( TestRunStats && ) = default; - TestRunStats& operator = ( TestRunStats const& ) = default; - TestRunStats& operator = ( TestRunStats && ) = default; - TestRunInfo runInfo; Totals totals; bool aborting;