Removed Ptr, Shared and SharedImpl

This commit is contained in:
Phil Nash
2017-04-25 21:51:44 +01:00
parent e6094a9503
commit 8ccbf63f28
15 changed files with 14 additions and 115 deletions

View File

@@ -41,7 +41,7 @@ namespace Catch {
}
struct StreamingReporterBase : SharedImpl<IStreamingReporter> {
struct StreamingReporterBase : IStreamingReporter {
StreamingReporterBase( ReporterConfig const& _config )
: m_config( _config.fullConfig() ),
@@ -103,7 +103,7 @@ namespace Catch {
ReporterPreferences m_reporterPrefs;
};
struct CumulativeReporterBase : SharedImpl<IStreamingReporter> {
struct CumulativeReporterBase : IStreamingReporter {
template<typename T, typename ChildNodeT>
struct Node {
explicit Node( T const& _value ) : value( _value ) {}

View File

@@ -12,7 +12,7 @@
namespace Catch {
class MultipleReporters : public SharedImpl<IStreamingReporter> {
class MultipleReporters : public IStreamingReporter {
typedef std::vector<IStreamingReporterPtr > Reporters;
Reporters m_reporters;