aboutsummaryrefslogtreecommitdiffstats
path: root/libdevcore/JSON.cpp
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-04-20 01:24:01 +0800
committerGitHub <noreply@github.com>2018-04-20 01:24:01 +0800
commit124ca40dc525a987a88176c6e5170978e82fa290 (patch)
treeb1c1da8a9a6ba886bb43f115328a18222f59553d /libdevcore/JSON.cpp
parent4cb486ee993cadde5564fb6c611d2bcf4fc44414 (diff)
parent7fb431ad7d0f7667c83d3f9b2350c3a1cef73b9e (diff)
downloaddexon-solidity-124ca40dc525a987a88176c6e5170978e82fa290.tar
dexon-solidity-124ca40dc525a987a88176c6e5170978e82fa290.tar.gz
dexon-solidity-124ca40dc525a987a88176c6e5170978e82fa290.tar.bz2
dexon-solidity-124ca40dc525a987a88176c6e5170978e82fa290.tar.lz
dexon-solidity-124ca40dc525a987a88176c6e5170978e82fa290.tar.xz
dexon-solidity-124ca40dc525a987a88176c6e5170978e82fa290.tar.zst
dexon-solidity-124ca40dc525a987a88176c6e5170978e82fa290.zip
Merge pull request #3950 from ethereum/develop
Merge develop into release for 0.4.23
Diffstat (limited to 'libdevcore/JSON.cpp')
-rw-r--r--libdevcore/JSON.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/libdevcore/JSON.cpp b/libdevcore/JSON.cpp
index 079d4d51..d99b3bc6 100644
--- a/libdevcore/JSON.cpp
+++ b/libdevcore/JSON.cpp
@@ -27,6 +27,11 @@
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."
+);
+
namespace dev
{