From 425decdf7e9284d15aa726e3ae96b9942fb0e3ea Mon Sep 17 00:00:00 2001 From: IronClawTrem Date: Sun, 16 Feb 2020 03:40:06 +0000 Subject: create tremded branch --- external/rapidjson/rapidjson.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 external/rapidjson/rapidjson.h (limited to 'external/rapidjson/rapidjson.h') diff --git a/external/rapidjson/rapidjson.h b/external/rapidjson/rapidjson.h new file mode 100644 index 0000000..33bf2a7 --- /dev/null +++ b/external/rapidjson/rapidjson.h @@ -0,0 +1,31 @@ +// __SSE2__ and __SSE4_2__ are recognized by gcc, clang, and the Intel compiler. +// We use -march=native with gmake to enable -msse2 and -msse4.2, if supported. +#if defined(__SSE4_2__) +# define RAPIDJSON_SSE42 +#elif defined(__SSE2__) +# define RAPIDJSON_SSE2 +#endif + +#include "rapidjson/allocators.h" +#include "rapidjson/istreamwrapper.h" +#include "rapidjson/reader.h" +#include "rapidjson/document.h" +#include "rapidjson/memorybuffer.h" +#include "rapidjson/schema.h" +#include "rapidjson/encodedstream.h" +#include "rapidjson/memorystream.h" +#include "rapidjson/stream.h" +#include "rapidjson/encodings.h" +#include "rapidjson/ostreamwrapper.h" +#include "rapidjson/stringbuffer.h" +#include "rapidjson/filereadstream.h" +#include "rapidjson/pointer.h" +#include "rapidjson/writer.h" +#include "rapidjson/filewritestream.h" +#include "rapidjson/prettywriter.h" +#include "rapidjson/fwd.h" +#include "rapidjson/rapidjson.h" + +#include "rapidjson/error/error.h" +#include "rapidjson/error/en.h" + -- cgit