From 5845ae94aad65cbbde26b87a49b81dba411e84a7 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Tue, 11 Feb 2014 18:11:06 +0000 Subject: [PATCH] Added private assignment operator to fix VS2010 issue - thanks to Kosta (#239) --- include/reporters/catch_reporter_bases.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/reporters/catch_reporter_bases.hpp b/include/reporters/catch_reporter_bases.hpp index 21e70980..ee255406 100644 --- a/include/reporters/catch_reporter_bases.hpp +++ b/include/reporters/catch_reporter_bases.hpp @@ -99,6 +99,8 @@ namespace Catch { return node->stats.sectionInfo.lineInfo == m_other.lineInfo; } private: + BySectionInfo& operator=( BySectionInfo const& other ); // = delete; + SectionInfo const& m_other; };