mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
24a185d26b
amalgamation.sh shouldn't change contents of src/simdjson.cpp by forcing dmalloc.h that didn't exist in non-amalgamated version and shouldn't change order of includes by placing simdjson.h at the top fixes #739
12 lines
250 B
C++
12 lines
250 B
C++
#include "simdjson.h"
|
|
|
|
/* used for http://dmalloc.com/ Dmalloc - Debug Malloc Library */
|
|
#ifdef DMALLOC
|
|
#include "dmalloc.h"
|
|
#endif
|
|
|
|
#include "error.cpp"
|
|
#include "implementation.cpp"
|
|
#include "stage1_find_marks.cpp"
|
|
#include "stage2_build_tape.cpp"
|