1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-04-11 12:34:46 +02:00

Fixed warning about copy ctor

This commit is contained in:
Phil Nash 2010-12-29 23:18:16 +00:00
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 ),