From ff6b449a07469ced280a76eaf1abaa1ca766b840 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfram=20R=C3=B6sler?= Date: Thu, 14 Sep 2017 09:31:36 +0200 Subject: [PATCH] Add value_type to improve integration with boost Without value_type, Boost.Test version 1.65.0 throws a compiler error when a Json::Value object is compared to another with BOOST_TEST. Example and further discussion are in https://github.com/open-source-parsers/jsoncpp/issues/671. --- include/json/value.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/json/value.h b/include/json/value.h index ebca175..ae111fb 100644 --- a/include/json/value.h +++ b/include/json/value.h @@ -190,6 +190,9 @@ public: typedef Json::LargestUInt LargestUInt; typedef Json::ArrayIndex ArrayIndex; + // Required for boost integration, e. g. BOOST_TEST + typedef std::string value_type; + static const Value& null; ///< We regret this reference to a global instance; prefer the simpler Value(). static const Value& nullRef; ///< just a kludge for binary-compatibility; same as null static Value const& nullSingleton(); ///< Prefer this to null or nullRef.