mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
Avoiding stack allocation. (#1515)
This commit is contained in:
@@ -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 (); \
|
||||
} \
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user