Solved compiler warnings C5026 and C5027 for VS2015.

This commit is contained in:
RLangendam
2016-10-08 17:38:33 +02:00
parent 88732e85b2
commit f1729d5aff
6 changed files with 23 additions and 0 deletions

View File

@@ -240,6 +240,8 @@ namespace Catch {
virtual bool assertionEnded( AssertionStats const& ) CATCH_OVERRIDE {
return false;
}
CATCH_CONFIG_CPP11_NON_MOVABLE(TestEventListenerBase)
};
} // end namespace Catch

View File

@@ -123,6 +123,8 @@ public: // IStreamingReporter
return this;
}
MultipleReporters() {}
CATCH_CONFIG_CPP11_NON_MOVABLE(MultipleReporters)
};
Ptr<IStreamingReporter> addReporter( Ptr<IStreamingReporter> const& existingReporter, Ptr<IStreamingReporter> const& additionalReporter ) {