From 8a30b6b483208d1f62db4eb0f6b1fb00b621ed90 Mon Sep 17 00:00:00 2001
From: Patrick Boettcher
Date: Mon, 13 Jul 2020 11:18:20 +0200
Subject: [PATCH] binary-type was added to nlohmann::json 3.8.0 - this is the
minimum requirement now
---
src/nlohmann/json-schema.hpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/nlohmann/json-schema.hpp b/src/nlohmann/json-schema.hpp
index c25ca72..e312931 100644
--- a/src/nlohmann/json-schema.hpp
+++ b/src/nlohmann/json-schema.hpp
@@ -24,11 +24,11 @@
#include
#ifdef NLOHMANN_JSON_VERSION_MAJOR
-# if (NLOHMANN_JSON_VERSION_MAJOR * 10000 + NLOHMANN_JSON_VERSION_MINOR * 100 + NLOHMANN_JSON_VERSION_PATCH) < 30600
-# error "Please use this library with NLohmann's JSON version 3.6.0 or higher"
+# if (NLOHMANN_JSON_VERSION_MAJOR * 10000 + NLOHMANN_JSON_VERSION_MINOR * 100 + NLOHMANN_JSON_VERSION_PATCH) < 30800
+# error "Please use this library with NLohmann's JSON version 3.8.0 or higher"
# endif
#else
-# error "expected existing NLOHMANN_JSON_VERSION_MAJOR preproc variable, please update to NLohmann's JSON 3.6.0"
+# error "expected existing NLOHMANN_JSON_VERSION_MAJOR preproc variable, please update to NLohmann's JSON 3.8.0"
#endif
// make yourself a home - welcome to nlohmann's namespace