mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
Fix unreachable-code-return warnings
This commit is contained in:
parent
897fe2a01b
commit
10596b2278
@ -57,8 +57,6 @@ namespace Catch {
|
|||||||
auto it = m_impl->factories.find( name );
|
auto it = m_impl->factories.find( name );
|
||||||
if ( it == m_impl->factories.end() ) return nullptr;
|
if ( it == m_impl->factories.end() ) return nullptr;
|
||||||
return it->second->create( CATCH_MOVE( config ) );
|
return it->second->create( CATCH_MOVE( config ) );
|
||||||
|
|
||||||
return IEventListenerPtr();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ReporterRegistry::registerReporter( std::string const& name,
|
void ReporterRegistry::registerReporter( std::string const& name,
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
#pragma clang diagnostic push
|
#pragma clang diagnostic push
|
||||||
#pragma clang diagnostic ignored "-Wweak-vtables"
|
#pragma clang diagnostic ignored "-Wweak-vtables"
|
||||||
#pragma clang diagnostic ignored "-Wmissing-noreturn"
|
#pragma clang diagnostic ignored "-Wmissing-noreturn"
|
||||||
#pragma clang diagnostic ignored "-Wunreachable-code"
|
#pragma clang diagnostic ignored "-Wunreachable-code-return"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
Loading…
Reference in New Issue
Block a user