Fixed warning about copy ctor

This commit is contained in:
Phil Nash 2010-12-29 23:18:16 +00:00
parent 4b8e3fca32
commit 763d5c368a
1 changed files with 3 additions and 0 deletions

View File

@ -72,6 +72,9 @@ namespace Catch
class Runner : public IResultListener
{
Runner( const Runner& );
void operator =( const Runner& );
public:
explicit Runner( const RunnerConfig& config )
: m_config( config ),