Deprecate C_DEBUG definition in favour of standard NDEBUG (#2783)

This commit is contained in:
pajlada
2021-05-20 14:21:41 +02:00
committed by GitHub
parent 2db50f1c41
commit ddba279ff7
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -134,7 +134,7 @@ namespace {
// true.
void initSignalHandler()
{
#ifndef C_DEBUG
#ifdef NDEBUG
signalsInitTime = std::chrono::steady_clock::now();
signal(SIGSEGV, handleSignal);