mirror of
https://github.com/catchorg/Catch2.git
synced 2025-08-02 13:25:41 +02:00
Fixed warning about copy ctor
This commit is contained in:
@@ -72,6 +72,9 @@ namespace Catch
|
|||||||
|
|
||||||
class Runner : public IResultListener
|
class Runner : public IResultListener
|
||||||
{
|
{
|
||||||
|
Runner( const Runner& );
|
||||||
|
void operator =( const Runner& );
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit Runner( const RunnerConfig& config )
|
explicit Runner( const RunnerConfig& config )
|
||||||
: m_config( config ),
|
: m_config( config ),
|
||||||
|
Reference in New Issue
Block a user