From 1840929c51409724d5787029322f40307f714c60 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Thu, 20 Sep 2012 08:36:38 +0100 Subject: [PATCH] Regenerated header --- single_include/catch.hpp | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/single_include/catch.hpp b/single_include/catch.hpp index ba9a0797..3b0a1274 100644 --- a/single_include/catch.hpp +++ b/single_include/catch.hpp @@ -1,5 +1,5 @@ /* - * Generated: 2012-09-15 17:50:31.695760 + * Generated: 2012-09-20 08:36:21.042619 * ---------------------------------------------------------- * This file has been merged from multiple headers. Please don't edit it directly * Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved. @@ -2007,10 +2007,20 @@ namespace Catch fullConfig( _fullConfig ) {} + ReporterConfig( const ReporterConfig& other ) + : name( other.name ), + stream( other.stream ), + includeSuccessfulResults( other.includeSuccessfulResults ), + fullConfig( other.fullConfig ) + {} + std::string name; std::ostream& stream; bool includeSuccessfulResults; ConfigData fullConfig; + + private: + void operator=(const ReporterConfig&); }; class TestCaseInfo;