aboutsummaryrefslogtreecommitdiff
path: root/src/nlohmann
diff options
context:
space:
mode:
Diffstat (limited to 'src/nlohmann')
-rw-r--r--src/nlohmann/json_fwd.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/nlohmann/json_fwd.hpp b/src/nlohmann/json_fwd.hpp
new file mode 100644
index 000000000..ae6e4c64f
--- /dev/null
+++ b/src/nlohmann/json_fwd.hpp
@@ -0,0 +1,10 @@
+#pragma once
+
+namespace nlohmann {
+
+struct json : basic_json<>
+{
+ using basic_json<>::basic_json;
+};
+
+}