mirror of
https://github.com/catchorg/Catch2.git
synced 2025-06-02 18:07:59 +00:00
Fixed warning about copy ctor
This commit is contained in:
parent
4b8e3fca32
commit
763d5c368a
1 changed files with 3 additions and 0 deletions
|
@ -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 ),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue