aboutsummaryrefslogtreecommitdiffstats
path: root/libdevcore/JSON.cpp
diff options
context:
space:
mode:
authorAlexander Arlt <alexander.arlt@arlt-labs.com>2018-02-16 07:03:12 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-04-23 18:10:39 +0800
commit0b49fd34931bd27c47b2f9dea39f4c75b3b2937f (patch)
treecbe0342fb088823881495389987cf79a099c064c /libdevcore/JSON.cpp
parent2fae248dbe50bed93268529724c1e3691f3c4a3f (diff)
downloaddexon-solidity-0b49fd34931bd27c47b2f9dea39f4c75b3b2937f.tar.gz
dexon-solidity-0b49fd34931bd27c47b2f9dea39f4c75b3b2937f.tar.zst
dexon-solidity-0b49fd34931bd27c47b2f9dea39f4c75b3b2937f.zip
CMake: Update jsoncpp to v1.8.4
Diffstat (limited to 'libdevcore/JSON.cpp')
-rw-r--r--libdevcore/JSON.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libdevcore/JSON.cpp b/libdevcore/JSON.cpp
index d99b3bc6..6317cc89 100644
--- a/libdevcore/JSON.cpp
+++ b/libdevcore/JSON.cpp
@@ -28,8 +28,8 @@
using namespace std;
static_assert(
- (JSONCPP_VERSION_MAJOR == 1) && (JSONCPP_VERSION_MINOR == 7) && (JSONCPP_VERSION_PATCH == 7),
- "Unexpected jsoncpp version: " JSONCPP_VERSION_STRING ". Expecting 1.7.7."
+ (JSONCPP_VERSION_MAJOR == 1) && (JSONCPP_VERSION_MINOR == 8) && (JSONCPP_VERSION_PATCH == 4),
+ "Unexpected jsoncpp version: " JSONCPP_VERSION_STRING ". Expecting 1.8.4."
);
namespace dev