LGTM: [skip ci] fix: Inconsistent definition of copy constructor and assignment ('Rule of Two')
Remove user-defined copy constructor of Exception classes without assignment operator
This commit is contained in:
@@ -208,12 +208,6 @@ SystemExitException::SystemExitException()
|
||||
_exitCode = errCode;
|
||||
}
|
||||
|
||||
SystemExitException::SystemExitException(const SystemExitException &inst)
|
||||
: Exception(inst), _exitCode(inst._exitCode)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
// ---------------------------------------------------------
|
||||
|
||||
// Fixes #0000831: python print causes File descriptor error on windows
|
||||
|
||||
Reference in New Issue
Block a user