summaryrefslogtreecommitdiff
path: root/external/rapidjson/rapidjson.h
diff options
context:
space:
mode:
authorIronClawTrem <louie.nutman@gmail.com>2020-02-16 03:40:06 +0000
committerIronClawTrem <louie.nutman@gmail.com>2020-02-16 03:40:06 +0000
commit425decdf7e9284d15aa726e3ae96b9942fb0e3ea (patch)
tree6c0dd7edfefff1be7b9e75fe0b3a0a85fe1595f3 /external/rapidjson/rapidjson.h
parentccb0b2e4d6674a7a00c9bf491f08fc73b6898c54 (diff)
create tremded branch
Diffstat (limited to 'external/rapidjson/rapidjson.h')
-rw-r--r--external/rapidjson/rapidjson.h31
1 files changed, 31 insertions, 0 deletions
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"
+