Avoiding stack allocation. (#1515)

This commit is contained in:
Daniel Lemire
2021-03-23 11:32:04 -04:00
committed by GitHub
parent 5607253be5
commit 95b4870e20
6 changed files with 54 additions and 57 deletions
-3
View File
@@ -9,9 +9,6 @@
#ifndef ASSERT
#define ASSERT(x) \
{ if (!(x)) { \
char buf[4096]; \
snprintf (buf, 4096, "Failure in \"%s\", line %d\n", \
__FILE__, __LINE__); \
abort (); \
} \
}