Removed superfluous comments (bad merge after cherry pick).

This commit is contained in:
Martin Hořeňovský 2017-01-14 15:08:00 +01:00
parent 40dbdf6cb2
commit 7c8b93eac3
1 changed files with 1 additions and 3 deletions

View File

@ -157,12 +157,10 @@ namespace Catch {
isSet = false;
}
}
// C++03 doesn't allow auto_ptr<T[]>, so we have manage the memory ourselves
};
bool FatalConditionHandler::isSet = false;
struct sigaction FatalConditionHandler::oldSigActions[sizeof(signalDefs)/sizeof(SignalDefs)] = {} ;//[sizeof(signalDefs)/sizeof(SignalDefs)];
struct sigaction FatalConditionHandler::oldSigActions[sizeof(signalDefs)/sizeof(SignalDefs)] = {};
stack_t FatalConditionHandler::oldSigStack = {};
char FatalConditionHandler::altStackMem[SIGSTKSZ] = {};