mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 12:17:11 +01:00 
			
		
		
		
	Replaced some stray overrides with CATCH_OVERRIDE
This commit is contained in:
		| @@ -26,27 +26,27 @@ namespace Catch { | ||||
|         public: // IRegistryHub | ||||
|             RegistryHub() { | ||||
|             } | ||||
|             virtual IReporterRegistry const& getReporterRegistry() const override { | ||||
|             virtual IReporterRegistry const& getReporterRegistry() const CATCH_OVERRIDE { | ||||
|                 return m_reporterRegistry; | ||||
|             } | ||||
|             virtual ITestCaseRegistry const& getTestCaseRegistry() const override { | ||||
|             virtual ITestCaseRegistry const& getTestCaseRegistry() const CATCH_OVERRIDE { | ||||
|                 return m_testCaseRegistry; | ||||
|             } | ||||
|             virtual IExceptionTranslatorRegistry& getExceptionTranslatorRegistry() override { | ||||
|             virtual IExceptionTranslatorRegistry& getExceptionTranslatorRegistry() CATCH_OVERRIDE { | ||||
|                 return m_exceptionTranslatorRegistry; | ||||
|             } | ||||
|  | ||||
|         public: // IMutableRegistryHub | ||||
|             virtual void registerReporter( std::string const& name, Ptr<IReporterFactory> const& factory ) override { | ||||
|             virtual void registerReporter( std::string const& name, Ptr<IReporterFactory> const& factory ) CATCH_OVERRIDE { | ||||
|                 m_reporterRegistry.registerReporter( name, factory ); | ||||
|             } | ||||
|             virtual void registerListener( Ptr<IReporterFactory> const& factory ) override { | ||||
|             virtual void registerListener( Ptr<IReporterFactory> const& factory ) CATCH_OVERRIDE { | ||||
|                 m_reporterRegistry.registerListener( factory ); | ||||
|             } | ||||
|             virtual void registerTest( TestCase const& testInfo ) override { | ||||
|             virtual void registerTest( TestCase const& testInfo ) CATCH_OVERRIDE { | ||||
|                 m_testCaseRegistry.registerTest( testInfo ); | ||||
|             } | ||||
|             virtual void registerTranslator( const IExceptionTranslator* translator ) override { | ||||
|             virtual void registerTranslator( const IExceptionTranslator* translator ) CATCH_OVERRIDE { | ||||
|                 m_exceptionTranslatorRegistry.registerTranslator( translator ); | ||||
|             } | ||||
|  | ||||
|   | ||||
| @@ -18,9 +18,9 @@ namespace Catch { | ||||
|  | ||||
|     public: | ||||
|  | ||||
|         virtual ~ReporterRegistry() override {} | ||||
|         virtual ~ReporterRegistry() CATCH_OVERRIDE {} | ||||
|  | ||||
|         virtual IStreamingReporter* create( std::string const& name, Ptr<IConfig> const& config ) const override { | ||||
|         virtual IStreamingReporter* create( std::string const& name, Ptr<IConfig> const& config ) const CATCH_OVERRIDE { | ||||
|             FactoryMap::const_iterator it =  m_factories.find( name ); | ||||
|             if( it == m_factories.end() ) | ||||
|                 return CATCH_NULL; | ||||
| @@ -34,10 +34,10 @@ namespace Catch { | ||||
|             m_listeners.push_back( factory ); | ||||
|         } | ||||
|  | ||||
|         virtual FactoryMap const& getFactories() const override { | ||||
|         virtual FactoryMap const& getFactories() const CATCH_OVERRIDE { | ||||
|             return m_factories; | ||||
|         } | ||||
|         virtual Listeners const& getListeners() const override { | ||||
|         virtual Listeners const& getListeners() const CATCH_OVERRIDE { | ||||
|             return m_listeners; | ||||
|         } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Phil Nash
					Phil Nash