Added private assignment operator to fix VS2010 issue

- thanks to Kosta (#239)
This commit is contained in:
Phil Nash 2014-02-11 18:11:06 +00:00
parent b15726beba
commit 5845ae94aa
1 changed files with 2 additions and 0 deletions

View File

@ -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;
};