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:
wmayer
2020-07-27 13:47:41 +02:00
parent 4dd32ce143
commit 3b0eeb63e8
8 changed files with 8 additions and 232 deletions

View File

@@ -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