mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
Fixed warning about copy ctor
This commit is contained in:
parent
4b8e3fca32
commit
763d5c368a
@ -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 ),
|
||||||
|
Loading…
Reference in New Issue
Block a user